Changeset a857389 for lib/linktypes.c
- Timestamp:
- 02/15/18 17:59:50 (3 years ago)
- Branches:
- cachetimestamps, develop, etsilive, master, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance
- Children:
- 5a70a80
- Parents:
- 3004d6c
- git-author:
- Anthony Coddington <anthony.coddington@…> (02/14/18 16:03:04)
- git-committer:
- Shane Alcock <salcock@…> (02/15/18 17:59:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/linktypes.c
r4697684 ra857389 102 102 /* Used for test traces within WAND */ 103 103 case TRACE_TYPE_80211_PRISM: 104 /* Could use DLT_ERF, but would only really make sense with PCAP-NG */ 105 case TRACE_TYPE_ERF_META: 104 106 /* Probably == PPP */ 105 107 /* TODO: We haven't researched these yet */ … … 169 171 case TYPE_ATM: return TRACE_TYPE_ATM; 170 172 case TYPE_AAL5: return TRACE_TYPE_AAL5; 173 case TYPE_COLOR_ETH:return TRACE_TYPE_ETH; 171 174 case TYPE_DSM_COLOR_ETH:return TRACE_TYPE_ETH; 175 case TYPE_COLOR_HASH_ETH:return TRACE_TYPE_ETH; 172 176 case TYPE_IPV4: return TRACE_TYPE_NONE; 173 177 case TYPE_IPV6: return TRACE_TYPE_NONE; 178 case TYPE_META: return TRACE_TYPE_ERF_META; 174 179 } 175 180 return ~0U; … … 183 188 case TRACE_TYPE_ATM: return TYPE_ATM; 184 189 case TRACE_TYPE_AAL5: return TYPE_AAL5; 190 case TRACE_TYPE_ERF_META: return TYPE_META; 185 191 186 192 /* Not technically correct! Could be IPv6 packet
Note: See TracChangeset
for help on using the changeset viewer.