diff options
author | Fernando Fernandez Mancera <ffmancera@riseup.net> | 2018-08-22 17:03:45 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-08-23 20:50:31 +0200 |
commit | 1ecfaa2a9f5191823a3c3cd19b760fcb69f7d38d (patch) | |
tree | 681f01b3aad1ced116a812aa8f06ee430063a0f1 /src | |
parent | b8d4cf6560385786d5b7824a85efc42d9bb41ed6 (diff) |
src: mnl: make nft_mnl_talk() public
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 <ffmancera@riseup.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mnl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |