As we are going to use the function nft_mnl_talk() from the incoming
nftnl_osf.c, we make it public.

Signed-off-by: Fernando Fernandez Mancera <ffmanc...@riseup.net>
---
 include/mnl.h | 4 ++++
 src/mnl.c     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/mnl.h b/include/mnl.h
index cb131bb..36109c7 100644
--- a/include/mnl.h
+++ b/include/mnl.h
@@ -92,4 +92,8 @@ int mnl_nft_event_listener(struct mnl_socket *nf_sock, 
unsigned int debug_mask,
                           int (*cb)(const struct nlmsghdr *nlh, void *data),
                           void *cb_data);
 
+int nft_mnl_talk(struct netlink_ctx *ctx, const void *data, unsigned int len,
+                int (*cb)(const struct nlmsghdr *nlh, void *data),
+                void *cb_data);
+
 #endif /* _NFTABLES_MNL_H_ */
diff --git a/src/mnl.c b/src/mnl.c
index 42eacab..6a6d45c 100644
--- a/src/mnl.c
+++ b/src/mnl.c
@@ -66,7 +66,7 @@ out:
        return ret;
 }
 
-static int
+int
 nft_mnl_talk(struct netlink_ctx *ctx, const void *data, unsigned int len,
             int (*cb)(const struct nlmsghdr *nlh, void *data), void *cb_data)
 {
-- 
2.18.0

Reply via email to