dect
/
libpcap
Archived
13
0
Fork 0

Add LINKTYPE_AOS, corresponding to DLT_AOS.

This commit is contained in:
Guy Harris 2009-05-12 10:07:59 -07:00
parent 7f3508098b
commit 8cbe17bec2
1 changed files with 14 additions and 0 deletions

View File

@ -682,6 +682,17 @@ static const char rcsid[] _U_ =
*/ */
#define LINKTYPE_DECT 221 #define LINKTYPE_DECT 221
/*
* From: "Lidwa, Eric (GSFC-582.0)[SGT INC]" <eric.lidwa-1@nasa.gov>
* Date: Mon, 11 May 2009 11:18:30 -0500
*
* DLT_AOS. We need it for AOS Space Data Link Protocol.
* I have already written dissectors for but need an OK from
* legal before I can submit a patch.
*
*/
#define LINKTYPE_AOS 222
static struct linktype_map { static struct linktype_map {
int dlt; int dlt;
@ -1006,6 +1017,9 @@ static struct linktype_map {
/* DECT packets with a pseudo-header */ /* DECT packets with a pseudo-header */
{ DLT_DECT, LINKTYPE_DECT }, { DLT_DECT, LINKTYPE_DECT },
/* AOS Space Data Link Protocol */
{ DLT_AOS, LINKTYPE_AOS },
{ -1, -1 } { -1, -1 }
}; };