Packet Ieee80211ProbeResponseFrame

File: src/linklayer/ieee80211/mgmt/Ieee80211MgmtFrames.msg

Probe response frame format (management frame + body); same as Beacon

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

Ieee80211ManagementFrame (packet)

Base class for 802.11 management frames (subclasses will add frame body contents)

Fields:

Name Type Description
byteLength
transmitterAddress MACAddress

aka address2

body Ieee80211ProbeResponseFrameBody
fragmentNumber short
fromDS bool
address3 MACAddress
type short

type and subtype

receiverAddress MACAddress

aka address1

sequenceNumber short
duration simtime_t

"duration" in the Duration/ID field (-1=no duration)

toDS bool
AID short

"id" (Association ID) in the Duration/ID field (-1=no ID)

retry bool
moreFragments bool

Source code:

//
// Probe response frame format (management frame + body); same as Beacon
//
packet Ieee80211ProbeResponseFrame extends Ieee80211ManagementFrame
{
    type = ST_PROBERESPONSE;
    byteLength = 28+getBody().getBodyLength();
    Ieee80211ProbeResponseFrameBody body;
}