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.
This commit is contained in:
Aleksandr Nogikh 2020-08-31 15:30:45 +03:00 committed by Dmitry Vyukov
parent eb2b629d3c
commit f7907acd76
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ struct nlmsg {
char* pos;
int nesting;
struct nlattr* nested[8];
char buf[1024];
char buf[4096];
};
static struct nlmsg nlmsg;

View File

@ -2359,7 +2359,7 @@ struct nlmsg {
char* pos;
int nesting;
struct nlattr* nested[8];
char buf[1024];
char buf[4096];
};
static struct nlmsg nlmsg;