diff options
-rw-r--r-- | pcap-common.c | 15 | ||||
-rw-r--r-- | pcap/dlt.h | 14 |
2 files changed, 27 insertions, 2 deletions
diff --git a/pcap-common.c b/pcap-common.c index 8b7ffa52..b908dab0 100644 --- a/pcap-common.c +++ b/pcap-common.c @@ -1122,7 +1122,20 @@ */ #define LINKTYPE_OPENVIZSLA 278 -#define LINKTYPE_MATCHING_MAX 278 /* highest value in the "matching" range */ +/* + * The Elektrobit High Speed Capture and Replay (EBHSCR) protocol is produced + * by a PCIe Card for interfacing high speed automotive interfaces. + * + * The specification for this frame format can be found at: + * http://www.elektrobit.com/ebhscr + * + * for Guenter.Ebermann at elektrobit.com + * + */ +#define LINKTYPE_EBHSCR 279 + + +#define LINKTYPE_MATCHING_MAX 279 /* highest value in the "matching" range */ /* * The DLT_ and LINKTYPE_ values in the "matching" range should be the @@ -1408,6 +1408,18 @@ #define DLT_OPENVIZSLA 278 /* + * The Elektrobit High Speed Capture and Replay (EBHSCR) protocol is produced + * by a PCIe Card for interfacing high speed automotive interfaces. + * + * The specification for this frame format can be found at: + * http://www.elektrobit.com/ebhscr + * + * for Guenter.Ebermann at elektrobit.com + * + */ +#define DLT_EBHSCR 279 + +/* * In case the code that includes this file (directly or indirectly) * has also included OS files that happen to define DLT_MATCHING_MAX, * with a different value (perhaps because that OS hasn't picked up @@ -1417,7 +1429,7 @@ #ifdef DLT_MATCHING_MAX #undef DLT_MATCHING_MAX #endif -#define DLT_MATCHING_MAX 278 /* highest value in the "matching" range */ +#define DLT_MATCHING_MAX 279 /* highest value in the "matching" range */ /* * DLT and savefile link type values are split into a class and |