1 /* 2 * Redistribution and use in source and binary forms, with or without 3 * modification, are permitted provided that: (1) source code 4 * distributions retain the above copyright notice and this paragraph 5 * in its entirety, and (2) distributions including binary code include 6 * the above copyright notice and this paragraph in its entirety in 7 * the documentation or other materials provided with the distribution. 8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND 9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT 10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 11 * FOR A PARTICULAR PURPOSE. 12 * 13 * Original code by Hannes Gredler (hannes (at) juniper.net) 14 */ 15 16 #define NETDISSECT_REWORKED 17 #ifdef HAVE_CONFIG_H 18 #include "config.h" 19 #endif 20 21 #include <tcpdump-stdinc.h> 22 #include "interface.h" 23 #include "l2vpn.h" 24 25 /* draft-ietf-pwe3-iana-allocation-04 */ 26 const struct tok l2vpn_encaps_values[] = { 27 { 0x00, "Reserved"}, 28 { 0x01, "Frame Relay"}, 29 { 0x02, "ATM AAL5 VCC transport"}, 30 { 0x03, "ATM transparent cell transport"}, 31 { 0x04, "Ethernet VLAN"}, 32 { 0x05, "Ethernet"}, 33 { 0x06, "Cisco-HDLC"}, 34 { 0x07, "PPP"}, 35 { 0x08, "SONET/SDH Circuit Emulation Service over MPLS"}, 36 { 0x09, "ATM n-to-one VCC cell transport"}, 37 { 0x0a, "ATM n-to-one VPC cell transport"}, 38 { 0x0b, "IP Layer2 Transport"}, 39 { 0x0c, "ATM one-to-one VCC Cell Mode"}, 40 { 0x0d, "ATM one-to-one VPC Cell Mode"}, 41 { 0x0e, "ATM AAL5 PDU VCC transport"}, 42 { 0x0f, "Frame-Relay Port mode"}, 43 { 0x10, "SONET/SDH Circuit Emulation over Packet"}, 44 { 0x11, "Structure-agnostic E1 over Packet"}, 45 { 0x12, "Structure-agnostic T1 (DS1) over Packet"}, 46 { 0x13, "Structure-agnostic E3 over Packet"}, 47 { 0x14, "Structure-agnostic T3 (DS3) over Packet"}, 48 { 0x15, "CESoPSN basic mode"}, 49 { 0x16, "TDMoIP basic mode"}, 50 { 0x17, "CESoPSN TDM with CAS"}, 51 { 0x18, "TDMoIP TDM with CAS"}, 52 { 0x40, "IP-interworking"}, 53 { 0, NULL} 54 }; 55