#include <Ieee80211MgmtAPSimplified.h>
Inheritance diagram for Ieee80211MgmtAPSimplified:
|
Implements Ieee80211MgmtBase. 00094 { 00095 dropManagementFrame(frame); 00096 }
|
|
Implements Ieee80211MgmtBase. 00099 { 00100 dropManagementFrame(frame); 00101 }
|
|
Implements Ieee80211MgmtBase. 00084 { 00085 dropManagementFrame(frame); 00086 }
|
|
Implements Ieee80211MgmtBase. 00119 { 00120 dropManagementFrame(frame); 00121 }
|
|
Implements abstract Ieee80211MgmtBase method -- throws an error (no commands supported) Implements Ieee80211MgmtBase. 00048 {
00049 error("handleCommand(): no commands supported");
00050 }
|
|
Implements Ieee80211MgmtBase. 00059 { 00060 // check toDS bit 00061 if (!frame->getToDS()) 00062 { 00063 // looks like this is not for us - discard 00064 delete frame; 00065 return; 00066 } 00067 00068 if (hasRelayUnit) 00069 { 00070 // LAN bridging: if we have a relayUnit, send up the frame to it. 00071 // We don't need to call distributeReceivedDataFrame() here, because 00072 // if the frame needs to be distributed onto the wireless LAN too, 00073 // then relayUnit will send a copy back to us. 00074 send(convertToEtherFrame(frame), "uppergateOut"); 00075 } 00076 else 00077 { 00078 // send it out to the destination STA 00079 distributeReceivedDataFrame(frame); 00080 } 00081 }
|
|
Implements Ieee80211MgmtBase. 00089 { 00090 dropManagementFrame(frame); 00091 }
|
|
Implements Ieee80211MgmtBase. 00114 { 00115 dropManagementFrame(frame); 00116 }
|
|
Implements Ieee80211MgmtBase. 00124 { 00125 dropManagementFrame(frame); 00126 }
|
|
Implements Ieee80211MgmtBase. 00129 { 00130 dropManagementFrame(frame); 00131 }
|
|
Implements Ieee80211MgmtBase. 00104 { 00105 dropManagementFrame(frame); 00106 }
|
|
Implements Ieee80211MgmtBase. 00109 { 00110 dropManagementFrame(frame); 00111 }
|
|
Implements abstract Ieee80211MgmtBase method Implements Ieee80211MgmtBase. 00035 {
00036 ASSERT(false);
00037 }
|
|
Implements abstract Ieee80211MgmtBase method Implements Ieee80211MgmtBase. 00040 { 00041 // convert Ethernet frames arriving from MACRelayUnit (i.e. from 00042 // the AP's other Ethernet or wireless interfaces) 00043 Ieee80211DataFrame *frame = convertFromEtherFrame(check_and_cast<EtherFrame *>(msg)); 00044 sendOrEnqueue(frame); 00045 }
|
|
Reimplemented from Ieee80211MgmtAPBase. 00030 { 00031 Ieee80211MgmtAPBase::initialize(stage); 00032 }
|
|
Reimplemented from Ieee80211MgmtAPBase. 00038 {return 2;}
|
|
Called by the NotificationBoard whenever a change occurs we're interested in Implements INotifiable. 00053 { 00054 Enter_Method_Silent(); 00055 printNotificationBanner(category, details); 00056 }
|