From 090a8427da036a2f64785682d4a40ec2d41a5de0 Mon Sep 17 00:00:00 2001 From: Ken-ichirou MATSUZAWA Date: Sat, 7 Dec 2013 20:32:29 +0900 Subject: examples: use mnl_socket_setsockopt instead of raw setsockopt() Signed-off-by: Ken-ichirou MATSUZAWA Signed-off-by: Florian Westphal --- examples/netfilter/nfct-daemon.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/netfilter/nfct-daemon.c b/examples/netfilter/nfct-daemon.c index a9b93db..a4ef0af 100644 --- a/examples/netfilter/nfct-daemon.c +++ b/examples/netfilter/nfct-daemon.c @@ -293,10 +293,8 @@ int main(int argc, char *argv[]) * b) if the user-space process does not pull messages from the * receiver buffer so often. */ - setsockopt(mnl_socket_get_fd(nl), SOL_NETLINK, - NETLINK_BROADCAST_ERROR, &on, sizeof(int)); - setsockopt(mnl_socket_get_fd(nl), SOL_NETLINK, NETLINK_NO_ENOBUFS, - &on, sizeof(int)); + mnl_socket_setsockopt(nl, NETLINK_BROADCAST_ERROR, &on, sizeof(int)); + mnl_socket_setsockopt(nl, NETLINK_NO_ENOBUFS, &on, sizeof(int)); nlh = mnl_nlmsg_put_header(buf); /* Counters are atomically zeroed in each dump */ -- cgit v1.2.3