]> The Tcpdump Group git mirrors - libpcap/commitdiff
RFC 1483 handles more than just IP and more than just SNAP.
authorguy <guy>
Fri, 27 May 2005 23:33:00 +0000 (23:33 +0000)
committerguy <guy>
Fri, 27 May 2005 23:33:00 +0000 (23:33 +0000)
pcap-bpf.h
pcap.c

index cef6cbf64e4bf6190ebeaa67baad6e0ca899a6b4..5144a38ced294eeeff359dc1adb6f5376f7551f0 100644 (file)
@@ -37,7 +37,7 @@
  *
  *      @(#)bpf.h       7.1 (Berkeley) 5/7/91
  *
- * @(#) $Header: /tcpdump/master/libpcap/pcap-bpf.h,v 1.34.2.4 2005-05-01 19:50:51 guy Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/libpcap/pcap-bpf.h,v 1.34.2.5 2005-05-27 23:33:00 guy Exp $ (LBL)
  */
 
 /*
@@ -147,7 +147,7 @@ struct bpf_version {
  * XXX - DLT_ATM_RFC1483 is 13 in BSD/OS, and DLT_RAW is 14 in BSD/OS,
  * but I don't know what the right #define is for BSD/OS.
  */
-#define DLT_ATM_RFC1483        11      /* LLC/SNAP encapsulated atm */
+#define DLT_ATM_RFC1483        11      /* LLC-encapsulated ATM */
 
 #ifdef __OpenBSD__
 #define DLT_RAW                14      /* raw IP */
diff --git a/pcap.c b/pcap.c
index 1635c2b49aba2b10299e6f22350af285fe95fd2f..c80b01a347166788472cc6247711a6b393b480eb 100644 (file)
--- a/pcap.c
+++ b/pcap.c
@@ -33,7 +33,7 @@
 
 #ifndef lint
 static const char rcsid[] _U_ =
-    "@(#) $Header: /tcpdump/master/libpcap/pcap.c,v 1.88.2.2 2005-05-19 10:05:32 hannes Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/libpcap/pcap.c,v 1.88.2.3 2005-05-27 23:33:00 guy Exp $ (LBL)";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -331,7 +331,7 @@ static struct dlt_choice dlt_choices[] = {
        DLT_CHOICE(DLT_SLIP, "SLIP"),
        DLT_CHOICE(DLT_PPP, "PPP"),
        DLT_CHOICE(DLT_FDDI, "FDDI"),
-       DLT_CHOICE(DLT_ATM_RFC1483, "RFC 1483 IP-over-ATM"),
+       DLT_CHOICE(DLT_ATM_RFC1483, "RFC 1483 LLC-encapsulated ATM"),
        DLT_CHOICE(DLT_RAW, "Raw IP"),
        DLT_CHOICE(DLT_SLIP_BSDOS, "BSD/OS SLIP"),
        DLT_CHOICE(DLT_PPP_BSDOS, "BSD/OS PPP"),