123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*++
- Copyright (c) 2015 Minoca Corp. All Rights Reserved
- Module Name:
- net8022.h
- Abstract:
- This header contains definitions for the IEEE 802.2 Logical Link Layer.
- Author:
- Chris Stevens 22-Oct-2015
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- //
- // --------------------------------------------------------------------- Macros
- //
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // Define the set of SAP addresses.
- //
- #define NET8022_SAP_ADDRESS_SNAP_EXTENSION 0xAA
- //
- // Define the bits for the LLC header's control field.
- //
- #define NET8022_CONTROL_TYPE_MASK 0x03
- #define NET8022_CONTROL_TYPE_SHIFT 0
- #define NET8022_CONTROL_TYPE_UNNUMBERED 0x3
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- /*++
- Structure Description:
- This structure defines the IEEE 802.2 logical link layer header.
- Members:
- DestinationSapAddress - Stores the destination SAP address for the frame.
- SourceSapAddress - Stores the source SAP address for the frame.
- Control - Stores a bitmask of bits that describe the frame. See
- NET8022_CONTROL_* for definitions.
- --*/
- typedef struct _NET8022_LLC_HEADER {
- UCHAR DestinationSapAddress;
- UCHAR SourceSapAddress;
- UCHAR Control;
- } PACKED NET8022_LLC_HEADER, *PNET8022_LLC_HEADER;
- /*++
- Structure Description:
- This structure defines the 802.2 SNAP extension.
- Members:
- OrganizationCode - Stores the 24-bit organization code for the frame.
- EthernetType - Stores the frame type. Values are taken from the IEEE 802.3
- Ethernet standard.
- --*/
- typedef struct _NET8022_SNAP_EXTENSION {
- UCHAR OrganizationCode[3];
- USHORT EthernetType;
- } PACKED NET8022_SNAP_EXTENSION, *PNET8022_SNAP_EXTENSION;
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
|