mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
o Swap descriptions for net.bpf.bufsize and net.bpf.maxbufsize.
PR: misc/152531 MFC after: 1 week
This commit is contained in:
parent
0715546197
commit
57542d0481
1 changed files with 2 additions and 2 deletions
|
|
@ -88,10 +88,10 @@ __FBSDID("$FreeBSD$");
|
|||
|
||||
static int bpf_bufsize = 4096;
|
||||
SYSCTL_INT(_net_bpf, OID_AUTO, bufsize, CTLFLAG_RW,
|
||||
&bpf_bufsize, 0, "Maximum capture buffer size in bytes");
|
||||
&bpf_bufsize, 0, "Default capture buffer size in bytes");
|
||||
static int bpf_maxbufsize = BPF_MAXBUFSIZE;
|
||||
SYSCTL_INT(_net_bpf, OID_AUTO, maxbufsize, CTLFLAG_RW,
|
||||
&bpf_maxbufsize, 0, "Default capture buffer in bytes");
|
||||
&bpf_maxbufsize, 0, "Maximum capture buffer in bytes");
|
||||
|
||||
void
|
||||
bpf_buffer_alloc(struct bpf_d *d)
|
||||
|
|
|
|||
Loading…
Reference in a new issue