diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2020-08-31 15:30:45 +0300 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-09-22 10:12:23 +0200 |
| commit | f7907acd76a744261067bc4613efd389ce7648ed (patch) | |
| tree | 35b619895a4edb94c7cde16df4f60d8086811d96 /pkg/csource | |
| parent | eb2b629d3cd9c9d366811c4c954baf55afceb8eb (diff) | |
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.
Diffstat (limited to 'pkg/csource')
| -rw-r--r-- | pkg/csource/generated.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/csource/generated.go b/pkg/csource/generated.go index 1d1b5219b..13d976321 100644 --- a/pkg/csource/generated.go +++ b/pkg/csource/generated.go @@ -2359,7 +2359,7 @@ struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; - char buf[1024]; + char buf[4096]; }; static struct nlmsg nlmsg; |
