File tree 3 files changed +28
-0
lines changed
3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -761,6 +761,18 @@ static const char rcsid[] _U_ =
761
761
#define LINKTYPE_JUNIPER_SRX_E2E 233
762
762
#define LINKTYPE_JUNIPER_FIBRECHANNEL 234
763
763
764
+ /*
765
+ * DVB-CI (DVB Common Interface for communication between a PC Card
766
+ * module and a DVB receiver). See
767
+ *
768
+ * http://www.kaiser.cx/pcap-dvbci.html
769
+ *
770
+ * for the specification.
771
+ *
772
+ * Requested by Martin Kaiser <martin@kaiser.cx>.
773
+ */
774
+ #define LINKTYPE_DVB_CI 235
775
+
764
776
static struct linktype_map {
765
777
int dlt ;
766
778
int linktype ;
@@ -1121,6 +1133,9 @@ static struct linktype_map {
1121
1133
/* Juniper Fibrechannel */
1122
1134
{ DLT_JUNIPER_FIBRECHANNEL , LINKTYPE_JUNIPER_FIBRECHANNEL },
1123
1135
1136
+ /* DVB-CI */
1137
+ { DLT_DVB_CI , LINKTYPE_DVB_CI },
1138
+
1124
1139
{ -1 , -1 }
1125
1140
};
1126
1141
Original file line number Diff line number Diff line change @@ -850,6 +850,7 @@ static struct dlt_choice dlt_choices[] = {
850
850
DLT_CHOICE (DLT_JUNIPER_VS , "Juniper Virtual Server" ),
851
851
DLT_CHOICE (DLT_JUNIPER_SRX_E2E , "Juniper SRX E2E" ),
852
852
DLT_CHOICE (DLT_JUNIPER_FIBRECHANNEL , "Juniper Fibrechannel" ),
853
+ DLT_CHOICE (DLT_DVB_CI , "DVB-CI" ),
853
854
DLT_CHOICE_SENTINEL
854
855
};
855
856
Original file line number Diff line number Diff line change @@ -995,6 +995,18 @@ struct bpf_program {
995
995
#define DLT_JUNIPER_SRX_E2E 233
996
996
#define DLT_JUNIPER_FIBRECHANNEL 234
997
997
998
+ /*
999
+ * DVB-CI (DVB Common Interface for communication between a PC Card
1000
+ * module and a DVB receiver). See
1001
+ *
1002
+ * http://www.kaiser.cx/pcap-dvbci.html
1003
+ *
1004
+ * for the specification.
1005
+ *
1006
+ * Requested by Martin Kaiser <martin@kaiser.cx>.
1007
+ */
1008
+ #define DLT_DVB_CI 235
1009
+
998
1010
/*
999
1011
* DLT and savefile link type values are split into a class and
1000
1012
* a member of that class. A class value of 0 indicates a regular
You can’t perform that action at this time.
0 commit comments