summaryrefslogtreecommitdiffstats
path: root/include/data_reg.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/data_reg.h')
-rw-r--r--include/data_reg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/data_reg.h b/include/data_reg.h
index e0fdd10..0f2ae9a 100644
--- a/include/data_reg.h
+++ b/include/data_reg.h
@@ -12,7 +12,7 @@ enum {
DATA_CHAIN,
};
-union nft_data_reg {
+union nftnl_data_reg {
struct {
uint32_t val[NFT_DATA_VALUE_MAXLEN / sizeof(uint32_t)];
uint32_t len;
@@ -23,11 +23,11 @@ union nft_data_reg {
};
};
-int nft_data_reg_snprintf(char *buf, size_t size, union nft_data_reg *reg,
+int nftnl_data_reg_snprintf(char *buf, size_t size, union nftnl_data_reg *reg,
uint32_t output_format, uint32_t flags, int reg_type);
struct nlattr;
-int nft_parse_data(union nft_data_reg *data, struct nlattr *attr, int *type);
-void nft_free_verdict(union nft_data_reg *data);
+int nftnl_parse_data(union nftnl_data_reg *data, struct nlattr *attr, int *type);
+void nftnl_free_verdict(union nftnl_data_reg *data);
#endif