Message Mac80211Pkt

File: contrib/messages/Mac80211Pkt.msg

Defines all fields of an 802.11 MAC frame

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

MacPkt

A basic MAC (Media Access Control) packet format definition

Fields:

Name Type Description
address3 int
address4 int
duration double
fragmentation int

part of the Frame Control field

informationDS int

part of the Frame Control field

sequenceControl int
retry bool

Source code:

message Mac80211Pkt extends MacPkt
{
   fields:
       int address3;
       int address4;
       double duration;
       int fragmentation; //part of the Frame Control field
       int informationDS; //part of the Frame Control field
       int sequenceControl;
       bool retry;
};