141c99275SPeter Avalos /* 241c99275SPeter Avalos * Redistribution and use in source and binary forms, with or without 341c99275SPeter Avalos * modification, are permitted provided that: (1) source code 441c99275SPeter Avalos * distributions retain the above copyright notice and this paragraph 541c99275SPeter Avalos * in its entirety, and (2) distributions including binary code include 641c99275SPeter Avalos * the above copyright notice and this paragraph in its entirety in 741c99275SPeter Avalos * the documentation or other materials provided with the distribution. 841c99275SPeter Avalos * THIS SOFTWARE IS PROVIDED ``AS IS'' AND 941c99275SPeter Avalos * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT 1041c99275SPeter Avalos * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 1141c99275SPeter Avalos * FOR A PARTICULAR PURPOSE. 1241c99275SPeter Avalos * 13*411677aeSAaron LI * Original code by Hannes Gredler (hannes@gredler.at) 1441c99275SPeter Avalos */ 1541c99275SPeter Avalos 1627bfbee1SPeter Avalos extern const struct tok nlpid_values[]; 1741c99275SPeter Avalos 1841c99275SPeter Avalos #define NLPID_NULLNS 0x00 1941c99275SPeter Avalos #define NLPID_Q933 0x08 /* ANSI T1.617 Annex D or ITU-T Q.933 Annex A */ 2041c99275SPeter Avalos #define NLPID_LMI 0x09 /* The original, aka Cisco, aka Gang of Four */ 2141c99275SPeter Avalos #define NLPID_SNAP 0x80 2241c99275SPeter Avalos #define NLPID_CLNP 0x81 /* iso9577 */ 2341c99275SPeter Avalos #define NLPID_ESIS 0x82 /* iso9577 */ 2441c99275SPeter Avalos #define NLPID_ISIS 0x83 /* iso9577 */ 2541c99275SPeter Avalos #define NLPID_CONS 0x84 2641c99275SPeter Avalos #define NLPID_IDRP 0x85 2741c99275SPeter Avalos #define NLPID_MFR 0xb1 /* FRF.15 */ 28*411677aeSAaron LI #define NLPID_SPB 0xc1 /* IEEE 802.1aq/D4.5 */ 2941c99275SPeter Avalos #define NLPID_IP 0xcc 3041c99275SPeter Avalos #define NLPID_PPP 0xcf 3141c99275SPeter Avalos #define NLPID_X25_ESIS 0x8a 3241c99275SPeter Avalos #define NLPID_IP6 0x8e 33