Namespace inet::ieee80211
Ieee80211FrameType
enum802.11 frame type constants (type+subtype), for the "type" field of Ieee80211FrameControl
Source code
// // 802.11 frame type constants (type+subtype), for the "type" field of // Ieee80211FrameControl // enum Ieee80211FrameType { // management: ST_ASSOCIATIONREQUEST = 0x00; ST_ASSOCIATIONRESPONSE = 0x01; ST_REASSOCIATIONREQUEST = 0x02; ST_REASSOCIATIONRESPONSE = 0x03; ST_PROBEREQUEST = 0x04; ST_PROBERESPONSE = 0x05; ST_BEACON = 0x08; ST_ATIM = 0x09; ST_DISASSOCIATION = 0x0a; ST_AUTHENTICATION = 0x0b; ST_DEAUTHENTICATION = 0x0c; ST_ACTION = 0x0d; ST_NOACKACTION = 0x0e; // control (CFEND/CFEND_CFACK omitted): ST_PSPOLL = 0x1a; ST_RTS = 0x1b; ST_CTS = 0x1c; ST_ACK = 0x1d; ST_BLOCKACK_REQ = 0x18; ST_BLOCKACK = 0x19; // data (CFPOLL/CFACK subtypes omitted): ST_DATA = 0x20; ST_DATA_WITH_QOS = 0x28; //Feedback frame for multicast tramsmission ST_LBMS_REQUEST = 0x30; ST_LBMS_REPORT = 0x31; }File: src/inet/linklayer/ieee80211/mac/Ieee80211Frame.msg