mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Fill in BPF sysctl descriptions.
Reviewed by: csjp
This commit is contained in:
parent
7521cd74f6
commit
c9fac982af
1 changed files with 2 additions and 2 deletions
|
|
@ -89,10 +89,10 @@ __FBSDID("$FreeBSD$");
|
|||
|
||||
static int bpf_bufsize = 4096;
|
||||
SYSCTL_INT(_net_bpf, OID_AUTO, bufsize, CTLFLAG_RW,
|
||||
&bpf_bufsize, 0, "");
|
||||
&bpf_bufsize, 0, "Maximum capture buffer size in bytes");
|
||||
static int bpf_maxbufsize = BPF_MAXBUFSIZE;
|
||||
SYSCTL_INT(_net_bpf, OID_AUTO, maxbufsize, CTLFLAG_RW,
|
||||
&bpf_maxbufsize, 0, "");
|
||||
&bpf_maxbufsize, 0, "Default capture buffer in bytes");
|
||||
|
||||
void
|
||||
bpf_buffer_alloc(struct bpf_d *d)
|
||||
|
|
|
|||
Loading…
Reference in a new issue