diff --git a/savefile.c b/savefile.c index c65858c..2ee8b9c 100644 --- a/savefile.c +++ b/savefile.c @@ -682,6 +682,17 @@ static const char rcsid[] _U_ = */ #define LINKTYPE_DECT 221 +/* + * From: "Lidwa, Eric (GSFC-582.0)[SGT INC]" + * 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 { int dlt; @@ -1006,6 +1017,9 @@ static struct linktype_map { /* DECT packets with a pseudo-header */ { DLT_DECT, LINKTYPE_DECT }, + /* AOS Space Data Link Protocol */ + { DLT_AOS, LINKTYPE_AOS }, + { -1, -1 } };