00001 00013 /* 00014 * INCLUDE FILES 00015 **************************************************************************************** 00016 */ 00017 00018 #include "llc.h" 00019 00025 /* 00026 * CONSTANTS 00027 **************************************************************************************** 00028 */ 00030 const struct llc_snap_short llc_rfc1042_hdr = { 00031 0xAAAA, // DSAP LSAP 00032 0x0003, // Control/Prot0 00033 0x0000, // Prot1 and 2 00034 }; 00035 00037 const struct llc_snap_short llc_bridge_tunnel_hdr = { 00038 0xAAAA, // DSAP LSAP 00039 0x0003, // Control/Prot0 00040 0xF800, // Prot1 and 2 00041 }; 00042
1.6.1