summaryrefslogtreecommitdiffstats
path: root/examples/rtnl/rtnl-link-dump3.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2010-10-21 12:00:27 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2010-10-21 12:00:27 +0200
commit4eaebf5ef25f97cc6960da9f1a29b61737da8abd (patch)
treee28f06c05e5a722e3a2a6de4b42f54bc3d72a81a /examples/rtnl/rtnl-link-dump3.c
parent781a9f058327730723525d3c4b85533920a00e9b (diff)
src: define MNL_SOCKET_BUFFER_SIZE to 8192UL
Davem spotted during the Netfilter Workshop that user-space applications should use 8KB buffers for recv(). I accidentally found that NFLOG is not following this approach (in this case we're using 131072 bytes messages), we have to document this. Anyway, according to linux/netlink.h (and to complete this log message): "skb should fit one page. This choice is good for headerless malloc. But we should limit to 8K so that userspace does not have to use enormous buffer sizes on recvmsg() calls just to avoid MSG_TRUNC when PAGE_SIZE is very large." Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'examples/rtnl/rtnl-link-dump3.c')
-rw-r--r--examples/rtnl/rtnl-link-dump3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rtnl/rtnl-link-dump3.c b/examples/rtnl/rtnl-link-dump3.c
index 6d06d7c..d8cacb4 100644
--- a/examples/rtnl/rtnl-link-dump3.c
+++ b/examples/rtnl/rtnl-link-dump3.c
@@ -60,7 +60,7 @@ static int data_cb(const struct nlmsghdr *nlh, void *data)
int main()
{
struct mnl_socket *nl;
- char buf[getpagesize()];
+ char buf[MNL_SOCKET_BUFFER_SIZE];
struct nlmsghdr *nlh;
struct rtgenmsg *rt;
int ret;