diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-12-03 14:55:55 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-12-03 14:55:55 -0800 |
commit | 2e1f6cd4ac8985a4ea07b97eca9cb5f16df8defc (patch) | |
tree | 55fc51b622b9f9f268bc297cd2be91dc4d08cb02 /pcap/dlt.h | |
parent | 0d408490f65983431b15a5ef87e0caaa2cc00adf (diff) |
Add LINKTYPE_ETHERNET_MPACKET/DLT_ETHERNET_MPACKET.
Diffstat (limited to 'pcap/dlt.h')
-rw-r--r-- | pcap/dlt.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1349,6 +1349,11 @@ */ #define DLT_DOCSIS31_XRA31 273 +/* + * mPackets, as specified by IEEE 802.3br Figure 99-4, starting + * with the preamble and always ending with a CRC field. + */ +#define DLT_ETHERNET_MPACKET 274 /* * In case the code that includes this file (directly or indirectly) @@ -1360,7 +1365,7 @@ #ifdef DLT_MATCHING_MAX #undef DLT_MATCHING_MAX #endif -#define DLT_MATCHING_MAX 273 /* highest value in the "matching" range */ +#define DLT_MATCHING_MAX 274 /* highest value in the "matching" range */ /* * DLT and savefile link type values are split into a class and |