diff options
author | Rui Paulo <rpaulo@FreeBSD.org> | 2009-03-22 00:47:41 +0000 |
---|---|---|
committer | Rui Paulo <rpaulo@FreeBSD.org> | 2009-03-22 00:47:41 +0000 |
commit | 1d111e6dfecb337f18846af2516ae07a3bafda52 (patch) | |
tree | 9364925d66f8ff5f9a0cbc51d58d0c66151353d1 /contrib/libpcap | |
parent | 34f27ade44b1fafacf1808f67026b8472958aa21 (diff) |
bpf_filter() and bpf_validate() can't live here if they already live in
bpf.h
Notes
Notes:
svn path=/head/; revision=190234
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 ea18edcff5b6..979a33e01c13 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); |