summaryrefslogtreecommitdiffstats
path: root/include/libnftnl/rule.h
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2019-10-30 18:31:59 +0100
committerPhil Sutter <phil@nwl.cc>2019-10-31 14:57:08 +0100
commit7349a70634fa02838aea33be0ff1b5491ac8dee9 (patch)
treec73d2368cc72cfca021f89d0c143daa869604d93 /include/libnftnl/rule.h
parent3c1a1779cb0d2725521e8411903d37b1aebd956c (diff)
Deprecate untyped data setters
These functions make assumptions on size of passed data pointer and therefore tend to hide programming mistakes. Instead either one of the type-specific setters or the generic *_set_data() setter should be used. Signed-off-by: Phil Sutter <phil@nwl.cc> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/libnftnl/rule.h')
-rw-r--r--include/libnftnl/rule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libnftnl/rule.h b/include/libnftnl/rule.h
index 78bfead..e5d1ca0 100644
--- a/include/libnftnl/rule.h
+++ b/include/libnftnl/rule.h
@@ -35,7 +35,7 @@ enum nftnl_rule_attr {
void nftnl_rule_unset(struct nftnl_rule *r, uint16_t attr);
bool nftnl_rule_is_set(const struct nftnl_rule *r, uint16_t attr);
-int nftnl_rule_set(struct nftnl_rule *r, uint16_t attr, const void *data);
+int nftnl_rule_set(struct nftnl_rule *r, uint16_t attr, const void *data) __attribute__((deprecated));
int nftnl_rule_set_data(struct nftnl_rule *r, uint16_t attr,
const void *data, uint32_t data_len);
void nftnl_rule_set_u32(struct nftnl_rule *r, uint16_t attr, uint32_t val);