A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
radiotap-header.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2009 CTTC
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Include., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  */
20 
21 #ifndef RADIOTAP_HEADER_H
22 #define RADIOTAP_HEADER_H
23 
24 
25 #include <ns3/header.h>
26 
27 namespace ns3 {
28 
48 class RadiotapHeader : public Header
49 {
50 public:
52  static TypeId GetTypeId (void);
53  virtual TypeId GetInstanceTypeId (void) const;
54 
62  virtual uint32_t GetSerializedSize (void) const;
63 
72  virtual void Serialize (Buffer::Iterator start) const;
73 
83  virtual uint32_t Deserialize (Buffer::Iterator start);
84 
98  virtual void Print (std::ostream &os) const;
99 
108  void SetTsft (uint64_t tsft);
109 
118  uint64_t GetTsft (void) const;
119 
120  enum {
122  FRAME_FLAG_CFP = 0x01,
124  FRAME_FLAG_WEP = 0x04,
130  };
131 
136  void SetFrameFlags (uint8_t flags);
137 
143  uint8_t GetFrameFlags (void) const;
144 
149  void SetRate (uint8_t rate);
150 
155  uint8_t GetRate (void) const;
156 
157  enum {
158  CHANNEL_FLAG_NONE = 0x0000,
160  CHANNEL_FLAG_CCK = 0x0020,
161  CHANNEL_FLAG_OFDM = 0x0040,
167  };
168 
175  void SetChannelFrequencyAndFlags (uint16_t frequency, uint16_t flags);
176 
181  uint16_t GetChannelFrequency (void) const;
182 
188  uint16_t GetChannelFlags (void) const;
189 
197  void SetAntennaSignalPower (double signal);
198 
206  uint8_t GetAntennaSignalPower (void) const;
207 
215  void SetAntennaNoisePower (double noise);
216 
224  uint8_t GetAntennaNoisePower (void) const;
225 
226 private:
227  enum {
228  RADIOTAP_TSFT = 0x00000001,
229  RADIOTAP_FLAGS = 0x00000002,
230  RADIOTAP_RATE = 0x00000004,
231  RADIOTAP_CHANNEL = 0x00000008,
232  RADIOTAP_FHSS = 0x00000010,
234  RADIOTAP_DBM_ANTNOISE = 0x00000040,
235  RADIOTAP_LOCK_QUALITY = 0x00000080,
238  RADIOTAP_DBM_TX_POWER = 0x00000200,
239  RADIOTAP_ANTENNA = 0x00000400,
240  RADIOTAP_DB_ANTSIGNAL = 0x00000800,
241  RADIOTAP_DB_ANTNOISE = 0x00001000,
242  RADIOTAP_EXT = 0x10000000
243  };
244 
245  void CheckAddChannelField ();
246 
247  uint16_t m_length;
248  uint32_t m_present;
249 
250  uint64_t m_tsft;
251  uint8_t m_flags;
252  uint8_t m_rate;
253  uint16_t m_channelFreq;
254  uint16_t m_channelFlags;
257 };
258 
259 } // namespace ns3
260 
261 #endif /* RADIOTAP_HEADER_H */
Protocol header serialization and deserialization.
Definition: header.h:42
Radiotap header implementation.
uint64_t GetTsft(void) const
Get the Time Synchronization Function Timer (TSFT) value.
virtual void Print(std::ostream &os) const
This method is used by Packet::Print to print the content of the header as ascii data to a C++ output...
uint8_t GetRate(void) const
Get the transmit/receive channel frequency in units of megahertz.
virtual uint32_t Deserialize(Buffer::Iterator start)
This method is used by Packet::RemoveHeader to re-create a header from the byte buffer of a packet...
virtual uint32_t GetSerializedSize(void) const
This method is used by Packet::AddHeader to store the header into the byte buffer of a packet...
virtual TypeId GetInstanceTypeId(void) const
void SetAntennaNoisePower(double noise)
Set the RF noise power at the antenna as a decibel difference from an arbitrary, fixed reference...
uint8_t GetAntennaNoisePower(void) const
Get the RF noise power at the antenna as a decibel difference from an arbitrary, fixed reference...
void SetTsft(uint64_t tsft)
Set the Time Synchronization Function Timer (TSFT) value.
static TypeId GetTypeId(void)
iterator in a Buffer instance
Definition: buffer.h:98
Frame has padding between 802.11 header and payload (to 32-bit boundary)
Frame sent/received with short preamble.
void SetChannelFrequencyAndFlags(uint16_t frequency, uint16_t flags)
Set the transmit/receive channel frequency and flags.
void SetFrameFlags(uint8_t flags)
Set the frame flags of the transmitted or received frame.
void SetRate(uint8_t rate)
Set the transmit/receive channel frequency in units of megahertz.
uint8_t GetFrameFlags(void) const
Get the frame flags of the transmitted or received frame.
Frame used short guard interval (HT)
uint16_t GetChannelFlags(void) const
Get the channel flags of the transmitted or received frame.
uint8_t GetAntennaSignalPower(void) const
Get the RF signal power at the antenna as a decibel difference from an arbitrary, fixed reference...
Frame sent/received with WEP encryption.
Frame sent/received with fragmentation.
Frame sent/received during CFP.
virtual void Serialize(Buffer::Iterator start) const
This method is used by Packet::AddHeader to store the header into the byte buffer of a packet...
uint16_t GetChannelFrequency(void) const
Get the transmit/receive data rate in units of 500 kbps.
a unique identifier for an interface.
Definition: type-id.h:49
void SetAntennaSignalPower(double signal)
Set the RF signal power at the antenna as a decibel difference from an arbitrary, fixed reference...