]> The Tcpdump Group git mirrors - tcpdump/blobdiff - ipfc.h
add tracefiles for infinite loop testing
[tcpdump] / ipfc.h
diff --git a/ipfc.h b/ipfc.h
index 0d819cc92096ae5fbb1c74df60d884d60a3c781c..438d1156446a03dc93a4d0c07ff4d1b234a7e5d8 100644 (file)
--- a/ipfc.h
+++ b/ipfc.h
  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- * @(#) $Header: /tcpdump/master/tcpdump/ipfc.h,v 1.2 2002-11-09 17:19:19 itojun Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/ipfc.h,v 1.4 2002-12-11 07:13:53 guy Exp $ (LBL)
  */
 
 struct ipfc_header {
        u_char  ipfc_dhost[8];
        u_char  ipfc_shost[8];
-} __attribute__((packed));
+};
 
 #define IPFC_HDRLEN 16
-
-/* Useful values for fddi_fc (frame control) field */
-
-/*
- * FDDI Frame Control bits
- */
-#define        FDDIFC_C                0x80            /* Class bit */
-#define        FDDIFC_L                0x40            /* Address length bit */
-#define        FDDIFC_F                0x30            /* Frame format bits */
-#define        FDDIFC_Z                0x0f            /* Control bits */
-
-/*
- * FDDI Frame Control values. (48-bit addressing only).
- */
-#define        FDDIFC_VOID             0x40            /* Void frame */
-#define        FDDIFC_NRT              0x80            /* Nonrestricted token */
-#define        FDDIFC_RT               0xc0            /* Restricted token */
-#define        FDDIFC_SMT_INFO         0x41            /* SMT Info */
-#define        FDDIFC_SMT_NSA          0x4F            /* SMT Next station adrs */
-#define        FDDIFC_MAC_BEACON       0xc2            /* MAC Beacon frame */
-#define        FDDIFC_MAC_CLAIM        0xc3            /* MAC Claim frame */
-#define        FDDIFC_LLC_ASYNC        0x50            /* Async. LLC frame */
-#define        FDDIFC_LLC_SYNC         0xd0            /* Sync. LLC frame */
-#define        FDDIFC_IMP_ASYNC        0x60            /* Implementor Async. */
-#define        FDDIFC_IMP_SYNC         0xe0            /* Implementor Synch. */
-#define FDDIFC_SMT             0x40            /* SMT frame */
-#define FDDIFC_MAC             0xc0            /* MAC frame */
-
-#define        FDDIFC_CLFF             0xF0            /* Class/Length/Format bits */
-#define        FDDIFC_ZZZZ             0x0F            /* Control bits */