File tree 3 files changed +17
-3
lines changed
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 558
558
*/
559
559
#define LINKTYPE_LAPD 203
560
560
561
-
562
561
/*
563
562
* PPP, with a one-byte direction pseudo-header prepended - zero means
564
563
* "received by this host", non-zero (any non-zero value) means "sent by
1170
1169
#define LINKTYPE_DSA_TAG_DSA 284
1171
1170
#define LINKTYPE_DSA_TAG_EDSA 285
1172
1171
1173
- #define LINKTYPE_MATCHING_MAX 285 /* highest value in the "matching" range */
1172
+ /*
1173
+ * Payload of lawful intercept packets using the ELEE protocol;
1174
+ * http://socket.hr/draft-dfranusic-opsawg-elee-00.xml
1175
+ * http://xml2rfc.tools.ietf.org/cgi-bin/xml2rfc.cgi?url=http://socket.hr/draft-dfranusic-opsawg-elee-00.xml&modeAsFormat=html/ascii
1176
+ */
1177
+ #define LINKTYPE_ELEE 286
1178
+
1179
+ #define LINKTYPE_MATCHING_MAX 286 /* highest value in the "matching" range */
1174
1180
1175
1181
/*
1176
1182
* The DLT_ and LINKTYPE_ values in the "matching" range should be the
Original file line number Diff line number Diff line change @@ -3132,6 +3132,7 @@ static struct dlt_choice dlt_choices[] = {
3132
3132
DLT_CHOICE (DSA_TAG_BRCM_PREPEND , "Broadcom tag (prepended)" ),
3133
3133
DLT_CHOICE (DSA_TAG_DSA , "Marvell DSA" ),
3134
3134
DLT_CHOICE (DSA_TAG_EDSA , "Marvell EDSA" ),
3135
+ DLT_CHOICE (ELEE , "ELEE lawful intercept packets" ),
3135
3136
DLT_CHOICE_SENTINEL
3136
3137
};
3137
3138
Original file line number Diff line number Diff line change 1455
1455
#define DLT_DSA_TAG_DSA 284
1456
1456
#define DLT_DSA_TAG_EDSA 285
1457
1457
1458
+ /*
1459
+ * Payload of lawful intercept packets using the ELEE protocol;
1460
+ * http://socket.hr/draft-dfranusic-opsawg-elee-00.xml
1461
+ * http://xml2rfc.tools.ietf.org/cgi-bin/xml2rfc.cgi?url=http://socket.hr/draft-dfranusic-opsawg-elee-00.xml&modeAsFormat=html/ascii
1462
+ */
1463
+ #define DLT_ELEE 286
1464
+
1458
1465
/*
1459
1466
* In case the code that includes this file (directly or indirectly)
1460
1467
* has also included OS files that happen to define DLT_MATCHING_MAX,
1465
1472
#ifdef DLT_MATCHING_MAX
1466
1473
#undef DLT_MATCHING_MAX
1467
1474
#endif
1468
- #define DLT_MATCHING_MAX 285 /* highest value in the "matching" range */
1475
+ #define DLT_MATCHING_MAX 286 /* highest value in the "matching" range */
1469
1476
1470
1477
/*
1471
1478
* DLT and savefile link type values are split into a class and
You can’t perform that action at this time.
0 commit comments