]> The Tcpdump Group git mirrors - libpcap/blobdiff - pcap-common.c
Add a link-layer type for a variant of 3GPP TS 27.010.
[libpcap] / pcap-common.c
index 8aa6c4ab7f130152494ad2933ef59405f9aef151..49d4ecd4c736a1023bdd59a61d51cc8e63e293c0 100644 (file)
@@ -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 <[email protected]>.
+ */
+#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 }
 };