summaryrefslogtreecommitdiffstats
path: root/include/netlink.h
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2019-07-16 19:03:55 +0200
committerFlorian Westphal <fw@strlen.de>2019-12-16 17:06:18 +0100
commit343a51702656a6476e37cfb84609a82155c7fc5e (patch)
tree10ce1fa0bf256982709d8a89c4a52cb1a8f9cfe3 /include/netlink.h
parent10f114806ccd9d64f9d72eaa813babb04d719688 (diff)
src: store expr, not dtype to track data in sets
This will be needed once we add support for the 'typeof' keyword to handle maps that could e.g. store 'ct helper' "type" values. Instead of: set foo { type ipv4_addr . mark; this would allow set foo { typeof(ip saddr) . typeof(ct mark); (exact syntax TBD). This would be needed to allow sets that store variable-sized data types (string, integer and the like) that can't be used at at the moment. Adding special data types for everything is problematic due to the large amount of different types needed. For anonymous sets, e.g. "string" can be used because the needed size can be inferred from the statement, e.g. 'osf name { "Windows", "Linux }', but in case of named sets that won't work because 'type string' lacks the context needed to derive the size information. With 'typeof(osf name)' the context is there, but at the moment it won't help because the expression is discarded instantly and only the data type is retained. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include/netlink.h')
-rw-r--r--include/netlink.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/netlink.h b/include/netlink.h
index 53a55b61..d02533ec 100644
--- a/include/netlink.h
+++ b/include/netlink.h
@@ -189,6 +189,5 @@ int netlink_events_trace_cb(const struct nlmsghdr *nlh, int type,
struct netlink_mon_handler *monh);
enum nft_data_types dtype_map_to_kernel(const struct datatype *dtype);
-const struct datatype *dtype_map_from_kernel(enum nft_data_types type);
#endif /* NFTABLES_NETLINK_H */