Message Ieee80211ProbeResponseFrame

File: NetworkInterfaces/Ieee80211/Mgmt/Ieee80211MgmtFrames.msg

C++ definition: click here

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

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:

Ieee80211ManagementFrame

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

Fields:

Name Type Description
type
byteLength
body Ieee80211ProbeResponseFrameBody

Source code:

message Ieee80211ProbeResponseFrame extends Ieee80211ManagementFrame
{
    fields:
        type = ST_PROBERESPONSE;
        byteLength = 34+getBody().getBodyLength();
        Ieee80211ProbeResponseFrameBody body;
};