diff -r d203296efb63 -r 072fb225b714 src/wifi/model/wifi-phy-state-helper.h --- a/src/wifi/model/wifi-phy-state-helper.h Fri May 06 13:21:20 2011 -0700 +++ b/src/wifi/model/wifi-phy-state-helper.h Sat May 07 21:49:46 2011 +0200 @@ -3,7 +3,7 @@ * Copyright (c) 2005,2006 INRIA * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as + * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, @@ -29,7 +29,7 @@ /** * \ingroup wifi - * + * * This objects implements the PHY state machine of the Wifi device. */ class WifiPhyStateHelper : public Object @@ -55,7 +55,7 @@ void SwitchToTx (Time txDuration, Ptr packet, WifiMode txMode, WifiPreamble preamble, uint8_t txPower); void SwitchToRx (Time rxDuration); - void SwitchToChannelSwitching (Time switchingDuration); + void SwitchToChannelSwitching (Time switchingDuration); void SwitchFromRxEndOk (Ptr packet, double snr, WifiMode mode, enum WifiPreamble preamble); void SwitchFromRxEndError (Ptr packet, double snr); void SwitchMaybeToCcaBusy (Time duration); @@ -72,18 +72,18 @@ void NotifyRxEndOk (void); void NotifyRxEndError (void); void NotifyMaybeCcaBusyStart (Time duration); - void NotifySwitchingStart (Time duration); + void NotifySwitchingStart (Time duration); void DoSwitchFromRx (void); bool m_rxing; Time m_endTx; Time m_endRx; Time m_endCcaBusy; - Time m_endSwitching; + Time m_endSwitching; Time m_startTx; Time m_startRx; Time m_startCcaBusy; - Time m_startSwitching; + Time m_startSwitching; Time m_previousStateChangeTime; Listeners m_listeners;