diff options
author | Anton Danilov <littlesmilingcloud@gmail.com> | 2014-08-28 10:11:31 +0400 |
---|---|---|
committer | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2014-09-14 20:35:36 +0200 |
commit | c1dd8442aac6cadb29110f763f23cafc63135a79 (patch) | |
tree | ac73bf1e0feab1ff602e3450058048c69686022e /lib/debug.c | |
parent | 89798a24cafa8f1bea391ea577a296f0468971db (diff) |
libipset: Add userspace code for the skbinfo extension support.
Add userspace code to support of the skbinfo extension independly of set types.
Defines constants, flag and function for print/parse/send/recieve of skbinfo
parameters.
Signed-off-by: Anton Danilov <littlesmilingcloud@gmail.com>
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Diffstat (limited to 'lib/debug.c')
-rw-r--r-- | lib/debug.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/debug.c b/lib/debug.c index 1240e22..b2c5003 100644 --- a/lib/debug.c +++ b/lib/debug.c @@ -67,6 +67,9 @@ static const struct ipset_attrname adtattr2name[] = { [IPSET_ATTR_IP2_TO] = { .name = "IP2_TO" }, [IPSET_ATTR_IFACE] = { .name = "IFACE" }, [IPSET_ATTR_COMMENT] = { .name = "COMMENT" }, + [IPSET_ATTR_SKBMARK] = { .name = "SKBMARK" }, + [IPSET_ATTR_SKBPRIO] = { .name = "SKBPRIO" }, + [IPSET_ATTR_SKBQUEUE] = { .name = "SKBQUEUE" }, }; static void @@ -98,6 +101,12 @@ debug_cadt_attrs(int max, const struct ipset_attr_policy *policy, fprintf(stderr, "\t\t%s: %u\n", attr2name[i].name, ntohl(v)); break; + case MNL_TYPE_U64: + fprintf(stderr, "\t\t%s: 0x%llx\n", + attr2name[i].name, (long long int) + be64toh(*(uint64_t *) + mnl_attr_get_payload(nla[i]))); + break; case MNL_TYPE_NUL_STRING: fprintf(stderr, "\t\t%s: %s\n", attr2name[i].name, |