summaryrefslogtreecommitdiffstats
path: root/src/libnftnl.map
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2014-08-13 12:30:06 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2014-08-14 20:19:49 +0200
commitbc56486503ec594a2bcb2a1e0fd76b23626c0aee (patch)
tree55de9898ed792bbfbff06887d31179b98c16f620 /src/libnftnl.map
parentf127a93dc7f965317176ad0a61125bd55085fb93 (diff)
common: add batching interfaces
This patch adds the following new interfaces: int nft_batch_is_supported(void); void nft_batch_begin(char *buf, uint32_t seq); void nft_batch_end(char *buf, uint32_t seq); Quite likely this is going to be reused by third party applications requiring to put things in the batch. We already have potential clients for this code in nft and iptables-compat. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/libnftnl.map')
-rw-r--r--src/libnftnl.map3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libnftnl.map b/src/libnftnl.map
index e8c634f..d8dcf8e 100644
--- a/src/libnftnl.map
+++ b/src/libnftnl.map
@@ -209,4 +209,7 @@ LIBNFTNL_1.1 {
LIBNFTNL_1.2 {
nft_set_elems_nlmsg_build_payload_iter;
+ nft_batch_is_supported;
+ nft_batch_begin;
+ nft_batch_end;
} LIBNFTNL_1.1;