diff options
author | Denis Ovsienko <denis@ovsienko.info> | 2023-02-19 20:21:32 +0000 |
---|---|---|
committer | Denis Ovsienko <denis@ovsienko.info> | 2023-02-19 20:21:32 +0000 |
commit | 2f45949a459252ac5abfbbc75ad58d7e3c3d559c (patch) | |
tree | b87a8d43dca14e3418c96a2d577aac2cfb130b12 /pcap | |
parent | 8e024a5f098627120b914128b7424bf1ed42446d (diff) |
Add LINKTYPE_ZWAVE_TAP/DLT_ZWAVE_TAP. [skip ci]
As discussed on tcpdump-workers@.
Diffstat (limited to 'pcap')
-rw-r--r-- | pcap/dlt.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1597,6 +1597,13 @@ #define DLT_AUERSWALD_LOG 296 /* + * Z-Wave TAP packets with a meta-data header + * https://gitlab.com/exegin/zwave-g9959-tap + * requested on tcpdump-workers@ + */ +#define DLT_ZWAVE_TAP 297 + +/* * 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 @@ -1607,6 +1614,6 @@ #undef DLT_MATCHING_MAX #endif -#define DLT_MATCHING_MAX 296 /* highest value in the "matching" range */ +#define DLT_MATCHING_MAX 297 /* highest value in the "matching" range */ #endif /* !defined(lib_pcap_dlt_h) */ |