Enum SAPCode

File: NetworkInterfaces/Contract/Ieee802Ctrl.msg

Some 8-bit SAP values for IEEE 802.x LLC headers.

Enum values:

Name Value Description
SAP_IBM_SNA 0x04
SAP_IP 0x06
SAP_3COM 0x80
SAP_SNAP 0xAA
SAP_BANYAN 0xBC
SAP_NOVELL_IPX 0xE0
SAP_LAN_MANAGER 0xF4
SAP_CLNS 0xFE

Source code:

enum SAPCode
{
    SAP_IBM_SNA     = 0x04;
    SAP_IP          = 0x06;
    SAP_3COM        = 0x80;
    SAP_SNAP        = 0xAA;
    SAP_BANYAN      = 0xBC;
    SAP_NOVELL_IPX  = 0xE0;
    SAP_LAN_MANAGER = 0xF4;
    SAP_CLNS        = 0xFE;
};