diff options
Diffstat (limited to 'pcap-snit.c')
-rw-r--r-- | pcap-snit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pcap-snit.c b/pcap-snit.c index 03e564e3..63c810ba 100644 --- a/pcap-snit.c +++ b/pcap-snit.c @@ -25,7 +25,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/libpcap/pcap-snit.c,v 1.56 2001-12-10 07:14:20 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/pcap-snit.c,v 1.57 2002-07-11 09:06:43 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -316,6 +316,12 @@ pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *ebuf) } int +pcap_platform_finddevs(pcap_if_t **alldevsp, char *errbuf) +{ + return (0); +} + +int pcap_setfilter(pcap_t *p, struct bpf_program *fp) { |