Added dissector for Excentis DOCSIS31 XRA header. DLT 273. Builtin version.

Change-Id: I7d4a9cf094e8ae6af05d5599489fc609456c5645
Reviewed-on: https://code.wireshark.org/review/25768
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Bruno Verstuyft 2018-02-13 11:45:41 +01:00 committed by Anders Broman
parent 9eee872f8a
commit 6a910946cd
5 changed files with 1220 additions and 0 deletions

View File

@ -1443,6 +1443,7 @@ DISSECTOR_SRC = \
packet-xmpp-utils.c \
packet-xmpp.c \
packet-xot.c \
packet-xra.c \
packet-xtp.c \
packet-xyplex.c \
packet-yami.c \

1211
epan/dissectors/packet-xra.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -455,6 +455,9 @@ static const struct {
/* Nordic BLE Sniffer */
{ 272, WTAP_ENCAP_NORDIC_BLE },
/* DOCSIS31 XRA31 Sniffer */
{ 273, WTAP_ENCAP_DOCSIS31_XRA31 },
/* mPackets as specified by 802.3br */
{ 274, WTAP_ENCAP_ETHERNET_MPACKET },

View File

@ -907,6 +907,10 @@ static struct encap_type_info encap_table_base[] = {
/* WTAP_ENCAP_MA_WFP_CAPTURE_AUTH_V6 */
{ "Message Analyzer WFP Capture Auth v6", "message_analyzer_wfp_capture_auth_v6" },
/* WTAP_ENCAP_DOCSIS31_XRA31 */
{ "DOCSIS31 XRA31", "docsis31_xra31" },
};
WS_DLL_LOCAL

View File

@ -278,6 +278,7 @@ extern "C" {
#define WTAP_ENCAP_MA_WFP_CAPTURE_AUTH_V6 196
#define WTAP_ENCAP_JUNIPER_ST 197
#define WTAP_ENCAP_ETHERNET_MPACKET 198
#define WTAP_ENCAP_DOCSIS31_XRA31 199
/* After adding new item here, please also add new item to encap_table_base array */