Changeset 204872da
- Timestamp:
- 09/15/11 11:58:07 (9 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 24ca459
- Parents:
- e19ada0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/erftypes.h
r2c743a7 r204872da 53 53 * a particular filter or classification */ 54 54 55 #ifndef TYPE_LEGACY 55 56 #define TYPE_LEGACY 0 /**< Legacy */ 57 #endif 58 59 #ifndef TYPE_HDLC_POS 56 60 #define TYPE_HDLC_POS 1 /**< PoS with HDLC framing */ 61 #endif 62 63 #ifndef TYPE_ETH 57 64 #define TYPE_ETH 2 /**< Ethernet */ 65 #endif 66 67 #ifndef TYPE_ATM 58 68 #define TYPE_ATM 3 /**< ATM Cell */ 69 #endif 70 71 #ifndef TYPE_AAL5 59 72 #define TYPE_AAL5 4 /**< AAL5 Frame */ 73 #endif 74 75 #ifndef TYPE_MC_HDLC 60 76 #define TYPE_MC_HDLC 5 /**< Multi-channel HDLC */ 77 #endif 78 79 #ifndef TYPE_MC_RAW 61 80 #define TYPE_MC_RAW 6 /**< Multi-channel Raw link record */ 81 #endif 82 83 #ifndef TYPE_MC_ATM 62 84 #define TYPE_MC_ATM 7 /**< Multi-channel ATM Cell */ 85 #endif 86 87 #ifndef TYPE_MC_RAW_CHANNEL 63 88 #define TYPE_MC_RAW_CHANNEL 8 /**< Multi-channel Raw link data */ 89 #endif 90 91 #ifndef TYPE_MC_AAL5 64 92 #define TYPE_MC_AAL5 9 /**< Multi-channel AAL5 */ 93 #endif 65 94 66 95 /** PoS with HDLC framing and classification information in the loss counter 67 96 * field */ 97 #ifndef TYPE_COLOR_HDLC_POS 68 98 #define TYPE_COLOR_HDLC_POS 10 99 #endif 69 100 70 101 /** Ethernet with classification information in the loss counter field */ 102 #ifndef TYPE_COLOR_ETH 71 103 #define TYPE_COLOR_ETH 11 104 #endif 72 105 73 106 /** Multi-channel AAL2 */ 107 #ifndef TYPE_MC_AAL2 74 108 #define TYPE_MC_AAL2 12 109 #endif 75 110 76 111 /** IP counter ERF record */ 112 #ifndef TYPE_IP_COUNTER 77 113 #define TYPE_IP_COUNTER 13 114 #endif 78 115 79 116 /** TCP flow counter ERF record */ 117 #ifndef TYPE_TCP_FLOW_COUNTER 80 118 #define TYPE_TCP_FLOW_COUNTER 14 119 #endif 81 120 82 121 /** PoS with HDLC framing with DSM color information in the loss counter field*/ 122 #ifndef TYPE_DSM_COLOR_HDLC_POS 83 123 #define TYPE_DSM_COLOR_HDLC_POS 15 124 #endif 84 125 85 126 /** Ethernet with DSM color information in the loss counter field */ 127 #ifndef TYPE_DSM_COLOR_ETH 86 128 #define TYPE_DSM_COLOR_ETH 16 129 #endif 87 130 88 131 /** Multi-channel HDLC with classification information in the loss counter 89 132 * field */ 133 #ifndef TYPE_COLOR_MC_HDLC_POS 90 134 #define TYPE_COLOR_MC_HDLC_POS 17 135 #endif 91 136 92 137 /** AAL2 Frame */ 138 #ifndef TYPE_AAL2 93 139 #define TYPE_AAL2 18 140 #endif 94 141 95 142 /** Colored PoS HDLC record with Hash load balancing */ 143 #ifndef TYPE_COLOR_HASH_POS 96 144 #define TYPE_COLOR_HASH_POS 19 145 #endif 97 146 98 147 /** Colored Ethernet with Hash load balancing */ 148 #ifndef TYPE_COLOR_HASH_ETH 99 149 #define TYPE_COLOR_HASH_ETH 20 150 #endif 100 151 101 152 /** Infiniband */ 153 #ifndef TYPE_INFINIBAND 102 154 #define TYPE_INFINIBAND 21 155 #endif 103 156 104 157 /** IPv4 */ 158 #ifndef TYPE_IPV4 105 159 #define TYPE_IPV4 22 160 #endif 106 161 107 162 /** IPv6 */ 163 #ifndef TYPE_IPV6 108 164 #define TYPE_IPV6 23 165 #endif 109 166 110 167 /** Raw link data, usually SONET or SDH */ 168 #ifndef TYPE_RAW_LINK 111 169 #define TYPE_RAW_LINK 24 170 #endif 112 171 113 172 /** Padding record */ 173 #ifndef TYPE_PAD 114 174 #define TYPE_PAD 48 115 175 #endif 176 177 178 #endif /* _ERFTYPES_H_ */
Note: See TracChangeset
for help on using the changeset viewer.