diff options
author | hannes <hannes> | 2004-10-07 14:53:09 +0000 |
---|---|---|
committer | hannes <hannes> | 2004-10-07 14:53:09 +0000 |
commit | 4d399db49937fa423cefe179173e351205796036 (patch) | |
tree | 20e3d68d769b6b66a19fab39303ba2f020382eb9 /nlpid.c | |
parent | 18c020c000d2cc939d52364e7812cb038e804838 (diff) | |
download | tcpdump-4d399db49937fa423cefe179173e351205796036.tar.gz |
-move the nlpid definitions and tokens to a dedicated file(s)
-make use of it in the ISO, Frame-relay and CDP printers
Diffstat (limited to 'nlpid.c')
-rwxr-xr-x | nlpid.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/nlpid.c b/nlpid.c new file mode 100755 index 00000000..d903c125 --- /dev/null +++ b/nlpid.c @@ -0,0 +1,43 @@ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code + * distributions retain the above copyright notice and this paragraph + * in its entirety, and (2) distributions including binary code include + * the above copyright notice and this paragraph in its entirety in + * the documentation or other materials provided with the distribution. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + * + * Original code by Hannes Gredler (hannes@juniper.net) + */ + +#ifndef lint +static const char rcsid[] _U_ = + "@(#) $Header: /tcpdump/master/tcpdump/nlpid.c,v 1.1 2004-10-07 14:53:10 hannes Exp $ (LBL)"; +#endif + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include <tcpdump-stdinc.h> +#include "interface.h" +#include "nlpid.h" + +struct tok nlpid_values[] = { + { NLPID_NULLNS, "NULL" }, + { NLPID_LMI, "LMI" }, + { NLPID_CISCO_LMI, "Cisco LMI" }, + { NLPID_SNAP, "SNAP" }, + { NLPID_CLNP, "CLNP" }, + { NLPID_ESIS, "ES-IS" }, + { NLPID_ISIS, "IS-IS" }, + { NLPID_CONS, "CONS" }, + { NLPID_IDRP, "IDRP" }, + { NLPID_IP, "IPv4" }, + { NLPID_X25_ESIS, "X25 ES-IS" }, + { NLPID_IP6, "IPv6" }, + { 0, NULL } +}; |