Defines all fields of an 802.11 MAC frame
This component has been taken over from Mobility Framework 1.0a5.
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
MacPkt | packet |
A basic MAC (Media Access Control) packet format definition |
Name | Type | Description |
---|---|---|
address3 | int | |
address4 | int | |
duration | simtime_t | |
fragmentation | int |
part of the Frame Control field |
informationDS | int |
part of the Frame Control field |
sequenceControl | int | |
destAddr | MACAddress |
destination mac address |
srcAddr | MACAddress |
source mac address |
channelId | int |
channel to send / receive on |
// // Defines all fields of an 802.11 MAC frame // // This component has been taken over from Mobility Framework 1.0a5. // packet Mac80211Pkt extends MacPkt { int address3; int address4; simtime_t duration; int fragmentation; //part of the Frame Control field int informationDS; //part of the Frame Control field int sequenceControl; }