diff options
author | guy <guy> | 2002-12-19 09:05:45 +0000 |
---|---|---|
committer | guy <guy> | 2002-12-19 09:05:45 +0000 |
commit | 482fa426bca50908c3739ba8b0539398dc01c9ae (patch) | |
tree | 0f954479d9e0117e34cc066d0766f09ece979ef5 /pcap-dlpi.c | |
parent | 1e574aa6fd73fdc835e340d9e1d00fc1b67a2614 (diff) |
NetBSD support for multiple data link types on an interface, from David
Young <dyoung@ojctech.com>, with some minor changes by Jason R. Thorpe
<thorpej@netbsd.org>, and further changes by me to support it on BPF
systems lacking BIOCGDLTLIST and other platforms lacking an equivalent
feature.
Update Jason Thorpe's e-mail address (Zembu is going away, if it hasn't
done so already).
Add APIs to map DLT names to DLT values and vice versa.
Diffstat (limited to 'pcap-dlpi.c')
-rw-r--r-- | pcap-dlpi.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pcap-dlpi.c b/pcap-dlpi.c index 854aa2b8..3f29a270 100644 --- a/pcap-dlpi.c +++ b/pcap-dlpi.c @@ -38,7 +38,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/libpcap/pcap-dlpi.c,v 1.79 2002-07-11 09:06:37 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/pcap-dlpi.c,v 1.80 2002-12-19 09:05:46 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -1444,3 +1444,9 @@ dlpi_kread(register int fd, register off_t addr, return (cc); } #endif + +int +pcap_set_datalink_platform(pcap_t *p, int dlt) +{ + return (0); +} |