From f7907acd76a744261067bc4613efd389ce7648ed Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 31 Aug 2020 15:30:45 +0300 Subject: executor/common_linux.h: increase default nlmsg buffer size 1024 bytes are not enough to contain an arbirary 802.11 MAC frame together with netlink protocol overhead. --- executor/common_linux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor') diff --git a/executor/common_linux.h b/executor/common_linux.h index 2c45387d8..04a8c35b5 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -128,7 +128,7 @@ struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; - char buf[1024]; + char buf[4096]; }; static struct nlmsg nlmsg; -- cgit mrf-deployment