mac-802_11Ext.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:22k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2007 
  3.  * Mercedes-Benz Research & Development North America, Inc. and
  4.  * University of Karlsruhe (TH)
  5.  * All rights reserved.
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46.  
  47. /*
  48.  * This code was designed and developed by:
  49.  * 
  50.  * Qi Chen                 : qi.chen@daimler.com
  51.  * Felix Schmidt-Eisenlohr : felix.schmidt-eisenlohr@kit.edu
  52.  * Daniel Jiang            : daniel.jiang@daimler.com
  53.  * 
  54.  * For further information see: 
  55.  * http://dsn.tm.uni-karlsruhe.de/english/Overhaul_NS-2.php
  56.  */
  57.  
  58. #ifndef ns_mac_80211Ext_h
  59. #define ns_mac_80211Ext_h
  60. #include "marshall.h"
  61. #include "timer-handler.h"
  62. #define GET_ETHER_TYPE(x) GET2BYTE((x))
  63. #define SET_ETHER_TYPE(x,y)            {u_int16_t t = (y); STORE2BYTE(x,&t);}
  64. #include "wireless-phyExt.h"
  65. /* ======================================================================
  66.  Frame Formats
  67.  ====================================================================== */
  68. #define MAC_ProtocolVersion 0x00
  69. #define MAC_Type_Management 0x00
  70. #define MAC_Type_Control 0x01
  71. #define MAC_Type_Data 0x02
  72. #define MAC_Type_Reserved 0x03
  73. #define MAC_Subtype_RTS 0x0B
  74. #define MAC_Subtype_CTS 0x0C
  75. #define MAC_Subtype_ACK 0x0D
  76. #define MAC_Subtype_Data 0x00
  77. struct frame_control {
  78. u_char fc_subtype : 4;
  79. u_char fc_type : 2;
  80. u_char fc_protocol_version : 2;
  81. u_char fc_order : 1;
  82. u_char fc_wep : 1;
  83. u_char fc_more_data : 1;
  84. u_char fc_pwr_mgt : 1;
  85. u_char fc_retry : 1;
  86. u_char fc_more_frag : 1;
  87. u_char fc_from_ds : 1;
  88. u_char fc_to_ds : 1;
  89. };
  90. struct rts_frame {
  91. struct frame_control rf_fc;
  92. u_int16_t rf_duration;
  93. u_char rf_ra[ETHER_ADDR_LEN];
  94. u_char rf_ta[ETHER_ADDR_LEN];
  95. u_char rf_fcs[ETHER_FCS_LEN];
  96. };
  97. struct cts_frame {
  98. struct frame_control cf_fc;
  99. u_int16_t cf_duration;
  100. u_char cf_ra[ETHER_ADDR_LEN];
  101. u_char cf_fcs[ETHER_FCS_LEN];
  102. };
  103. struct ack_frame {
  104. struct frame_control af_fc;
  105. u_int16_t af_duration;
  106. u_char af_ra[ETHER_ADDR_LEN];
  107. u_char af_fcs[ETHER_FCS_LEN];
  108. };
  109. // XXX This header does not have its header access function because it shares
  110. // the same header space with hdr_mac.
  111. struct hdr_mac802_11 {
  112. struct frame_control dh_fc;
  113. u_int16_t dh_duration;
  114. u_char dh_ra[ETHER_ADDR_LEN];
  115. u_char dh_ta[ETHER_ADDR_LEN];
  116. u_char dh_3a[ETHER_ADDR_LEN];
  117. u_int16_t dh_scontrol;
  118. u_char dh_body[0]; // size of 1 for ANSI compatibility
  119. };
  120. /* ======================================================================
  121.  Definitions
  122.  ====================================================================== */
  123. // #define DSSS_MaxPropagationDelay        0.000002        // 2us   XXXX
  124. #define DSSS_MaxPropagationDelay          0.000010        // 10us   XXXX
  125. class Mac802_11Ext;
  126. class PHY_MIBExt {
  127. public:
  128. PHY_MIBExt(Mac802_11Ext *parent);
  129. inline double getSlotTime() {
  130. return (SlotTime);
  131. }
  132. inline double getHeaderDuration() {
  133. return (HeaderDuration);
  134. }
  135. inline double getSymbolDuration() {
  136. return (SymbolDuration);
  137. }
  138. inline int getBasicModulationScheme() {
  139. return (BasicModulationScheme);
  140. }
  141. inline int use_802_11a() {
  142. return (use_802_11a_flag_);
  143. }
  144. inline double getBasicDataRate() {
  145. return (1.0/SymbolDuration
  146. * modulation_table[BasicModulationScheme].NDBPS);
  147. }
  148. inline u_int32_t getRTSlen() {
  149. return (sizeof(struct rts_frame));
  150. }
  151. inline u_int32_t getCTSlen() {
  152. return (sizeof(struct cts_frame));
  153. }
  154. inline u_int32_t getACKlen() {
  155. return (sizeof(struct ack_frame));
  156. }
  157. inline u_int32_t getHdrLen11() {
  158. return(offsetof(struct hdr_mac802_11, dh_body[0])
  159. + ETHER_FCS_LEN);
  160. }
  161. private:
  162. double SlotTime;
  163. double HeaderDuration;
  164. double SymbolDuration;
  165. int BasicModulationScheme;
  166. int use_802_11a_flag_;
  167. };
  168. /*---------------------information for Distributed coordination------*/
  169. #define MAC_FragmentationThreshold 2346 // bytes
  170. #define MAC_MaxTransmitMSDULifetime 512 // time units
  171. #define MAC_MaxReceiveLifetime 512 // time units
  172. class MAC_MIBExt {
  173. public:
  174. MAC_MIBExt(Mac802_11Ext *parent);
  175. inline u_int32_t getCWMin() {
  176. return (CWMin);
  177. }
  178. inline u_int32_t getCWMax() {
  179. return (CWMax);
  180. }
  181. inline double getSIFS() {
  182. return (SIFSTime);
  183. }
  184. inline u_int32_t getRTSThreshold() {
  185. return (RTSThreshold);
  186. }
  187. inline u_int32_t getShortRetryLimit() {
  188. return (ShortRetryLimit);
  189. }
  190. inline u_int32_t getLongRetryLimit() {
  191. return (LongRetryLimit);
  192. }
  193. private:
  194. u_int32_t CWMin;
  195. u_int32_t CWMax;
  196. double SIFSTime;
  197. u_int32_t RTSThreshold;
  198. u_int32_t ShortRetryLimit;
  199. u_int32_t LongRetryLimit;
  200. };
  201. /* ======================================================================
  202.  The following destination class is used for duplicate detection.
  203.  ====================================================================== */
  204. class Host {
  205. public:
  206. LIST_ENTRY(Host) link;
  207. u_int32_t index;
  208. u_int32_t seqno;
  209. };
  210. /* the new implementation has following modules*/
  211. /* ======================================================================
  212.  1.0 IFSTimer NAVTimer and ChannelStateMgr
  213.  ====================================================================== */
  214. /*
  215.  The channel state manager is responsible for maintaining both the physical and virtual carrier sense statuses for the IEEE 802.11 CSMA mechanism.
  216.  The channel state manager depends on the PHY to update the physical carrier sense status. It expects the PHY to signal channel busy when the total received signal strength rises above carrier sense threshold or when the PHY is in transmission. Similarly, it expects the PHY to signal channel clear when both conditions are gone.
  217.  The channel state manager expects signaling from the reception module for virtual carrier sense status updates as described in the above subsection. Once signaled this way, the channel state manager sets or updates the NAV for the duration specified.
  218.  The channel state manager has five states. The combination of both physical and virtual carrier sense statuses result in four states: NoCSnoNAV, NoCSNAV, CSnoNAV and CSNAV. Additionally, the time spent in InterFrame Spacing (IFS) waiting is also modeled as a state within the channel state manager. This is because the IFS mechanism is essentially a self enforced NAV. As such, the channel state manager treats the Wait IFS state as channel being busy as well.The duration of IFS waiting time depends on the ifs_value parameter, which can be set to DIFS and EIFS. When EDCA is incorporated, it will be necessary to add an additional signaling interface from the transmission coordination module to the channel state manager to advise the AIFS values.  SIFS waiting, however, is handled by the transmission and reception coordination modules directly. This is because SIFS is used in a way unlike that of DIFS and EIFS. Any module that sets a SIFS timer will take action as the timer expires regardless of the channel condition during the SIFS.
  219.  
  220.  The channel state manager reports the joint physical and virtual carrier sense status in response to queries from any other module. That is: it reports CS_IDLE if it is in the NoCSnoNAV state, and CS_BUSY otherwise. It also reports the NAV status to the reception coordination module when queried, to assist the CTS decision.
  221.  The channel state manager actively signals the backoff manger whenever it moves in or out of the NoCSnoNAV state to indicate channel status changes. In turn the backoff manager resumes or pauses its backoff process if it is already in one. 
  222.  */
  223. class ChannelStateMgr;
  224. class IFSTimer : public TimerHandler {
  225. public:
  226. IFSTimer(ChannelStateMgr *c) :
  227. TimerHandler() {
  228. csmgr = c;
  229. }
  230. protected:
  231. void expire(Event *e);
  232. private:
  233. ChannelStateMgr * csmgr;
  234. };
  235. class NAVTimer : public TimerHandler {
  236. public:
  237. NAVTimer(ChannelStateMgr *c) :
  238. TimerHandler() {
  239. csmgr = c;
  240. }
  241. protected:
  242. void expire(Event *e);
  243. private:
  244. ChannelStateMgr *csmgr;
  245. };
  246. typedef enum ChannelState {noCSnoNAV=0, noCSNAV=1, CSnoNAV=2, CSNAV=3, WIFS=4};
  247. class ChannelStateMgr {
  248. friend class Mac802_11Ext;
  249. friend class BackoffMgr;
  250. friend class IFSTimer;
  251. friend class NAVTimer;
  252. public:
  253. ChannelStateMgr(Mac802_11Ext *m);
  254. void setIFS(double Tifs);
  255. void handlePHYBusyIndication();
  256. void handlePHYIdleIndication();
  257. void handleSetNAV(double Tnav);
  258. inline ChannelState getChannelState() {
  259. return channel_state_;
  260. }
  261. protected:
  262. void handleIFSTimer();
  263. void handleNAVTimer();
  264. private:
  265. Mac802_11Ext * mac_;
  266. ChannelState channel_state_;
  267. double ifs_value_;
  268. IFSTimer *ifsTimer_;
  269. NAVTimer *navTimer_;
  270. void setChannelState(ChannelState newState);
  271. };
  272. /* ======================================================================
  273.  2.0 Backoff timer and BackoffMgr
  274.  ====================================================================== */
  275. /*
  276.  The backoff manager maintains the backoff counter to support the collision avoidance mechanism in the IEEE 802.11 MAC. 
  277.  The backoff manager assists the transmission coordination module to run both the regular backoff and post-transmission backoff, but is not aware of the difference between the two. Figure 6 provides a very simplified view on how this is done.
  278.  The backoff manager has three states: No Backoff, Backoff Running, and Backoff Pause. It depends on the signaling of channel carrier sense state from the channel state manger to run or pause the backoff counter. It moves back to the No Backoff state and signals Backoff Done to the transmission coordination module when the backoff counter reaches zero. When EDCA is added, it will be necessary for an additional signaling interface to be implemented between the transmission coordination module and the backoff manager. This is used to trigger a reassessment of the backoff process with a different cw (Contention Window) value. In turn, it could cause the ending of the backoff sooner in cases of higher priority pending frames.
  279.  */
  280. class BackoffMgr;
  281. class BackoffTimer_t : public TimerHandler {
  282. friend class BackoffMgr;
  283. public:
  284. BackoffTimer_t(BackoffMgr *b);
  285. void pause();
  286. void run();
  287. int init(int CW);
  288. void setSlotTime(double);
  289. protected:
  290. void expire(Event *e);
  291. private:
  292. double tSlot;
  293. BackoffMgr * bkmgr_;
  294. int remainingSlots_;
  295. double startTime;
  296. };
  297. typedef enum BackoffMgrState {noBackoff,BackoffRunning,BackoffPause};
  298. class BackoffMgr {
  299. friend class Mac802_11Ext;
  300. friend class ChannelStateMgr;
  301. friend class BackoffTimer_t;
  302. public:
  303. BackoffMgr(Mac802_11Ext *m);
  304. void handleCSIDLE();
  305. void handleCSBUSY();
  306. void handleBKStart(int CW); //the chosen cnt should be passed to BK
  307. void setSlotTime(double);
  308. inline BackoffMgrState getBackoffMgrState() {
  309. return bk_state_;
  310. }
  311. private:
  312. Mac802_11Ext * mac_;
  313. void handleBackoffTimer();
  314. BackoffMgrState bk_state_;
  315. BackoffTimer_t * bkTimer_;
  316. void BKDone();
  317. void setBackoffMgrState(BackoffMgrState newState);
  318. };
  319. /* ======================================================================
  320.  3.0 TxTimer for transmission
  321.  ====================================================================== */
  322. class Mac802_11Ext;
  323. class TxTimer_t : public TimerHandler {
  324. public:
  325. TxTimer_t(Mac802_11Ext * m) :
  326. TimerHandler() {
  327. mac_ = m;
  328. }
  329. protected:
  330. void expire(Event *e);
  331. private:
  332. Mac802_11Ext * mac_;
  333. };
  334. /* ======================================================================
  335.  4.0 TX_Coordination
  336.  ====================================================================== */
  337. /*
  338.  The transmission coordination module manages channel access for packets passed down from the upper layer.
  339.  The state machine in the transmission coordination module roughly divided into two sides depending on whether the RTS/CTS exchange is needed. If the data frame is a broadcast or a unicast with size less than the RTS threshold, it is entirely processed within the right side of the overall state machine. Otherwise, a RTS frame is generated and a sequence of states on the left side is involved before the data frame would be sent.
  340.  
  341.  When the transmission coordination module moves out of the TXC_IDLE state because of a packet coming down from the upper layer, it first checks if a RTS frame should be generated. Afterwards, it starts a backoff process at the backoff manager if there is not one going on already and moves into the RTS Pending or Data Pending state according to the RTS decision.
  342.  If the transmission coordination module is in the RTS Pending or Data Pending state, it instructs the transmission module to transmit the RTS or data frame respectively as soon as receiving a signal indicating Backoff Done from the backoff manager. 
  343.  It is possible for these pending states to be directly bypassed. As shown in Figure 6, if the backoff manager does not have a backoff process currently going on and the channel state manager replies with a CS_IDLE, the transmission coordination module can immediately transmit the RTS or data frame. This is because the standard allows for a radio to start a transmission right away if it has completed a previous post-transmission backoff and the channel, both physically and virtually, has been idle for more than DIFS.
  344.  When the transmission of a RTS frame is completed, the transmission coordination module moves into the Wait CTS state and starts a timer TCTS. If the reception coordination module does not signal the arrival of a CTS frame before the timer expires, it starts another backoff process and moves back to the RTS pending state. It can repeat this process until the short retry limit is reached. If a CTS response comes back in time, then the transmission coordination module waits for SIFS before instructing the transmission module to send the data frame.
  345.  After the data frame transmission, the transmission coordination module moves into the Wait ACK state and starts a TACK timer. If it does not get an ACK reply indication from the reception coordination module before the timer expires, it starts a new backoff process and moves back to RTS Pending or Data Pending state respectively. Again, this is subject to the short or long retry limit respectively.
  346.  In cases of RTS retry or unicast retransmission, the cw parameter is updated before a backoff is requested with the new value.
  347.  The attempted transmission of a frame finishes in three possible ways: 1) it is a broadcast frame and it is transmitted once over the air; 2) it is a unicast frame and the transmission coordination module receives an ACK signaling from the reception coordination module; or 3) one of the retry limits is reached. In all three cases, the transmission coordination module resets the retry counters and the cw parameter, and starts a post-transmission backoff. Afterwards, if there is a packet waiting in the queue, it takes the packet and immediately moves into the RTS Pending or Data Pending state. Otherwise it returns back to the TXC_IDLE state.
  348.  */
  349. class TXC;
  350. class TXC_SIFSTimer : public TimerHandler {
  351. public:
  352. TXC_SIFSTimer(TXC *t) :
  353. TimerHandler() {
  354. txc_ = t;
  355. }
  356. protected:
  357. void expire(Event *e);
  358. private:
  359. TXC * txc_;
  360. };
  361. class TXC_CTSTimer : public TimerHandler {
  362. public:
  363. TXC_CTSTimer(TXC *t) :
  364. TimerHandler() {
  365. txc_ = t;
  366. }
  367. protected:
  368. void expire(Event *e);
  369. private:
  370. TXC * txc_;
  371. };
  372. class TXC_ACKTimer : public TimerHandler {
  373. public:
  374. TXC_ACKTimer(TXC *t) :
  375. TimerHandler() {
  376. txc_ = t;
  377. }
  378. protected:
  379. void expire(Event *e);
  380. private:
  381. TXC * txc_;
  382. };
  383. typedef enum TXCState {TXC_Idle,TXC_wait_RTSsent, TXC_wait_PDUsent, TXC_RTS_pending, TXC_DATA_pending,TXC_wait_CTS,TXC_wait_SIFS,TXC_wait_ACK};
  384. class TXC {
  385. public:
  386. TXC(Mac802_11Ext *m);
  387. void setTXCState(TXCState);
  388. void handleMsgFromUp(Packet *p);
  389. void handleBKDone();
  390. void handleTXConfirm();
  391. void handleTCTStimeout();
  392. void handleSIFStimeout();
  393. void handleTACKtimeout();
  394. void handleACKIndication();
  395. void handleCTSIndication();
  396. void checkQueue();
  397. void prepareMPDU(Packet *p);
  398. void generateRTSFrame(Packet *p);
  399. private:
  400. TXCState txc_state_;
  401. Packet *pRTS;
  402. Packet *pDATA;
  403. Mac802_11Ext *mac_;
  404. TXC_CTSTimer txcCTSTimer;
  405. TXC_SIFSTimer txcSIFSTimer;
  406. TXC_ACKTimer txcACKTimer;
  407. unsigned int shortretrycounter;
  408. unsigned int longretrycounter;
  409. // unsigned int rtsretrycounter;
  410. // unsigned int dataretrycounter;
  411. };
  412. /* ======================================================================
  413.  5.0  RX_Coordination
  414.  ====================================================================== */
  415. /*
  416.  The reception coordination module takes from the reception module control and data frames meant for this node. It signals the transmission coordination module when CTS and ACK frames arrive. It is responsible to handle the CTS and ACK responses when RTS and data frames arrive. It also filters the data frames before passing them to the upper layer.
  417.  
  418.  The reception coordination module has only three states: RXC_IDLE, RXC SIFS Wait, and Wait TX Done. The reception coordination module mostly spends time in the RXC_IDLE state and awaits control and data frames from the reception module.
  419.  If a RTS frame arrives, the reception coordination module queries the channel state manager for its NAV status. If the response indicates an active NAV, the RTS frame is simply discarded. Otherwise, the reception coordination module creates a CTS frame and moves into the RXC SIFS Wait state with a SIFS timer set. When the timer expires, it immediately instructs the transmission module to transmit the CTS frame. It then moves into the Wait TX Done state for the transmission duration before returning to the TXC_IDLE state.
  420.  If a unicast data frame arrives, the reception coordination module starts an ACK process similar to the way it handles the CTS response. However, it does not consult the channel state manager for the NAV status. If a CTS or ACK frame arrives, the reception coordination module simply signals the transmission coordination module accordingly.
  421.  The reception coordination module passes data frames to the upper layer. In this process, it is responsible to discard duplicate data frames coming in from the channel, which can be caused by the unicast retransmission mechanism. In these cases, however, it still reacts with an ACK transmission.
  422.  */
  423. class RXC;
  424. class RXC_SIFSTimer : public TimerHandler {
  425. public:
  426. RXC_SIFSTimer(RXC *r) :
  427. TimerHandler() {
  428. rxc_ = r;
  429. }
  430. protected:
  431. void expire(Event *e);
  432. private:
  433. RXC * rxc_;
  434. };
  435. typedef enum RXCState {RXC_Idle,RXC_wait_SIFS,RXC_wait_sent};
  436. class RXC {
  437. public:
  438. RXC(Mac802_11Ext *m);
  439. void handleMsgFromBelow(Packet *p);
  440. void handleSIFStimeout();
  441. void handleTXConfirm();
  442. void generateACKFrame(Packet *p);
  443. void generateCTSFrame(Packet *p);
  444. private:
  445. RXCState rxc_state_;
  446. void setRXCState(RXCState);
  447. Packet *pCTRL;
  448. Mac802_11Ext *mac_;
  449. RXC_SIFSTimer rxcSIFSTimer_;
  450. };
  451. /* ======================================================================
  452.  6.0 The actual 802.11 MAC class.
  453.  ====================================================================== */
  454. typedef enum TXConfirmCallback {Callback_TXC,Callback_RXC};
  455. class TXC;
  456. class RXC;
  457. class Mac802_11Ext : public Mac {
  458. friend class TxTimer_t;
  459. friend class TxTimeout;
  460. friend class ChannelStateMgr;
  461. friend class BackoffMgr;
  462. friend class BackoffTimer_t;
  463. friend class TXC;
  464. friend class RXC;
  465. public:
  466. Mac802_11Ext();
  467. void recv(Packet *p, Handler *h);
  468. inline int hdr_dst(char* hdr, int dst = -2);
  469. inline int hdr_src(char* hdr, int src = -2);
  470. inline int hdr_type(char* hdr, u_int16_t type = 0);
  471. void handlePHYBusyIndication();
  472. void handlePHYIdleIndication();
  473. void handleRXStartIndication();
  474. void handleRXEndIndication(Packet *p);
  475. void handleTXEndIndication();
  476. int MAC_DBG;
  477. protected:
  478. void log(char* event, char* additional);
  479. private:
  480. void handleBKDone();
  481. void transmit(Packet *p, TXConfirmCallback);
  482. TXConfirmCallback txConfirmCallback_;
  483. BackoffMgr bkmgr;
  484. ChannelStateMgr csmgr;
  485. TXC txc;
  486. RXC rxc;
  487. int command(int argc, const char*const* argv);
  488. void sendDATA(Packet *p);
  489. void recvDATA(Packet *p);
  490. void discard(Packet *p, const char* why);
  491. /*
  492.  * Debugging Functions.
  493.  */
  494. void trace_pkt(Packet *p);
  495. void dump(char* fname);
  496. inline int initialized() {
  497. return (logtarget_ &&Mac::initialized());
  498. }
  499. inline void mac_log(Packet *p) {
  500. logtarget_->recv(p, (Handler*) 0);
  501. }
  502. double txtime(Packet *p);
  503. double txtime(double psz, double drt);
  504. double txtime(double psz, int mod_scheme);
  505. double txtime(int bytes) { /* clobber inherited txtime() */
  506. abort();
  507. }
  508. inline void inc_cw() {
  509. cw_ = (cw_ << 1) + 1;
  510. if (cw_ > macmib_.getCWMax())
  511. cw_ = macmib_.getCWMax();
  512. }
  513. inline void rst_cw() {
  514. cw_ = macmib_.getCWMin();
  515. }
  516. inline double sec(double t) {
  517. return (t *= 1.0e-6);
  518. }
  519. inline u_int16_t usec(double t) {
  520. u_int16_t us = (u_int16_t)floor((t *= 1e6) + 0.5);
  521. return us;
  522. }
  523. protected:
  524. PHY_MIBExt phymib_;
  525. MAC_MIBExt macmib_;
  526. private:
  527. /* ============================================================
  528.  Internal MAC State
  529.  ============================================================ */
  530. u_int32_t cw_; // Contention Window
  531. u_int32_t ssrc_; // STA Short Retry Count
  532. u_int32_t slrc_; // STA Long Retry Count
  533. double sifs_; // Short Interface Space
  534. double pifs_; // PCF Interframe Space
  535. double difs_; // DCF Interframe Space
  536. double eifs_; // Extended Interframe Space
  537. NsObject* logtarget_;
  538. };
  539. #endif /* ns_mac_80211Ext_h */