diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2009-03-22 00:47:41 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2009-03-22 00:47:41 +0000 |
commit | 989ff00905c55ff344b261fdbfd114034b294b2c (patch) | |
tree | 9364925d66f8ff5f9a0cbc51d58d0c66151353d1 /contrib/libpcap | |
parent | 4cae140c4140b2da6ae85f64a1fedcfef07e51bc (diff) | |
download | FreeBSD-src-989ff00905c55ff344b261fdbfd114034b294b2c.zip FreeBSD-src-989ff00905c55ff344b261fdbfd114034b294b2c.tar.gz |
bpf_filter() and bpf_validate() can't live here if they already live in
bpf.h
Diffstat (limited to 'contrib/libpcap')
-rw-r--r-- | contrib/libpcap/pcap/pcap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libpcap/pcap/pcap.h b/contrib/libpcap/pcap/pcap.h index ea18edcf..979a33e 100644 --- a/contrib/libpcap/pcap/pcap.h +++ b/contrib/libpcap/pcap/pcap.h @@ -336,8 +336,8 @@ void pcap_freealldevs(pcap_if_t *); const char *pcap_lib_version(void); /* XXX this guy lives in the bpf tree */ -u_int bpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int); -int bpf_validate(const struct bpf_insn *f, int len); +/* u_int bpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int); +int bpf_validate(const struct bpf_insn *f, int len); */ char *bpf_image(const struct bpf_insn *, int); void bpf_dump(const struct bpf_program *, int); |