diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-12-02 19:38:06 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-02 19:38:06 +0000 |
| commit | ce7609a49cf0c06b548cd809b80d8856ffd3f09d (patch) | |
| tree | f7f809c8e9f7a5048e5081473031c8338d4988ab /sys/net/bpf.c | |
| parent | af32e59f162ff095c857af192aeb63cc49468952 (diff) | |
Notes
Diffstat (limited to 'sys/net/bpf.c')
| -rw-r--r-- | sys/net/bpf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index 57a6e7d4e05ce..c1f99b2bf01b6 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -37,7 +37,7 @@ * * @(#)bpf.c 8.2 (Berkeley) 3/28/94 * - * $Id: bpf.c,v 1.15 1995/11/29 10:48:44 julian Exp $ + * $Id: bpf.c,v 1.16 1995/11/29 14:40:45 julian Exp $ */ #include "bpfilter.h" @@ -52,6 +52,7 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/conf.h> #include <machine/cpu.h> /* for bootverbose */ #include <sys/mbuf.h> #include <sys/buf.h> @@ -130,6 +131,8 @@ bpfilterattach(n) #endif static int bpf_allocbufs __P((struct bpf_d *)); +static void bpf_attachd __P((struct bpf_d *d, struct bpf_if *bp)); +static void bpf_detachd __P((struct bpf_d *d)); static void bpf_freed __P((struct bpf_d *)); static void bpf_ifname __P((struct ifnet *, struct ifreq *)); static void bpf_mcopy __P((const void *, void *, u_int)); |
