diff options
author | guy <guy> | 2002-07-11 09:06:30 +0000 |
---|---|---|
committer | guy <guy> | 2002-07-11 09:06:30 +0000 |
commit | 243b20ec553e192599e5280f17703454b4420fe0 (patch) | |
tree | 8b56a1369d487e0ca62902e7bc2bf7999dac2d1e /pcap-snit.c | |
parent | 0d020002007bc5fc8b3c058f78c8d9456ee5acfd (diff) |
Add SunATM support, based on code from Yen Yen Lim at North Dakota State
University.
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) { |