ebhscr: fixing WTAP_ENCAP_EBHSCR

Change-Id: Ie5ab56f1ee80d14032969cbe7f31e086fb2b4b91
Reviewed-on: https://code.wireshark.org/review/31159
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Pantar Ana 2018-12-21 13:37:52 +01:00 committed by Michael Mann
parent e830182d9e
commit eb8c996108
3 changed files with 8 additions and 1 deletions

View File

@ -464,6 +464,9 @@ static const struct {
/* DisplayPort AUX channel monitor */
{ 275, WTAP_ENCAP_DPAUXMON },
/* Elektrobit High Speed Capture and Replay */
{ 279, WTAP_ENCAP_EBHSCR },
/*
* To repeat:
*

View File

@ -954,7 +954,10 @@ static struct encap_type_info encap_table_base[] = {
{ "RFC 7468 file", "rfc7468" },
/* WTAP_ENCAP_SYSTEMD_JOURNAL */
{ "systemd journal", "sdjournal" }
{ "systemd journal", "sdjournal" },
/* WTAP_ENCAP_EBHSCR */
{ "EBHSCR", "ebhscr" },
};
WS_DLL_LOCAL

View File

@ -284,6 +284,7 @@ extern "C" {
#define WTAP_ENCAP_RUBY_MARSHAL 201
#define WTAP_ENCAP_RFC7468 202
#define WTAP_ENCAP_SYSTEMD_JOURNAL 203 /* Event, not a packet */
#define WTAP_ENCAP_EBHSCR 204
/* After adding new item here, please also add new item to encap_table_base array */