X-Git-Url: https://git.tcpdump.org/libpcap/blobdiff_plain/f69d068f2c52756a148fbb9bd4a0a213f45eb0f0..3574c038e7bd77251f041ebe432e60ba74d9ad04:/pcap-common.c diff --git a/pcap-common.c b/pcap-common.c index 8aa6c4ab..49d4ecd4 100644 --- a/pcap-common.c +++ b/pcap-common.c @@ -773,6 +773,12 @@ static const char rcsid[] _U_ = */ #define LINKTYPE_DVB_CI 235 +/* + * Variant of 3GPP TS 27.010 multiplexing protocol. Requested + * by Hans-Christoph Schemmel . + */ +#define LINKTYPE_MUX27010 236 + static struct linktype_map { int dlt; int linktype; @@ -1136,6 +1142,9 @@ static struct linktype_map { /* DVB-CI */ { DLT_DVB_CI, LINKTYPE_DVB_CI }, + /* Variant of 3GPP TS 27.010 */ + { DLT_MUX27010, LINKTYPE_MUX27010 }, + { -1, -1 } };