A Discrete-Event Network Simulator
API
dl-mac-messages.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2007,2008,2009 INRIA, UDcast
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, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Authors: Jahanzeb Farooq <jahanzeb.farooq@sophia.inria.fr>
19  * Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
20  * <amine.ismail@UDcast.com>
21  */
22 
23 #ifndef DCD_CHANNEL_ENCODINGS_H
24 #define DCD_CHANNEL_ENCODINGS_H
25 
26 #include <stdint.h>
27 #include "ns3/buffer.h"
28 #include <list>
29 
30 namespace ns3 {
31 
39 {
40 public:
41  DcdChannelEncodings (void);
42  virtual ~DcdChannelEncodings (void);
43 
48  void SetBsEirp (uint16_t bs_eirp);
53  void SetEirxPIrMax (uint16_t rss_ir_max);
58  void SetFrequency (uint32_t frequency);
59 
64  uint16_t GetBsEirp (void) const;
69  uint16_t GetEirxPIrMax (void) const;
74  uint32_t GetFrequency (void) const;
75 
80  uint16_t GetSize (void) const;
81 
94 private:
107 
108  uint16_t m_bsEirp;
109  uint16_t m_eirXPIrMax;
110  uint32_t m_frequency;
111 
112 };
113 
114 } // namespace ns3
115 
116 #endif /* DCD_CHANNEL_ENCODINGS_H */
117 
118 // ----------------------------------------------------------------------------------------------------------
119 
120 #ifndef OFDM_DCD_CHANNEL_ENCODINGS_H
121 #define OFDM_DCD_CHANNEL_ENCODINGS_H
122 
123 #include <stdint.h>
124 #include "ns3/mac48-address.h"
125 
126 namespace ns3 {
127 
133 {
134 public:
137 
142  void SetChannelNr (uint8_t channelNr);
147  void SetTtg (uint8_t ttg);
152  void SetRtg (uint8_t rtg);
153 
158  void SetBaseStationId (Mac48Address baseStationId);
163  void SetFrameDurationCode (uint8_t frameDurationCode);
168  void SetFrameNumber (uint32_t frameNumber);
169 
174  uint8_t GetChannelNr (void) const;
179  uint8_t GetTtg (void) const;
184  uint8_t GetRtg (void) const;
185 
190  Mac48Address GetBaseStationId (void) const;
195  uint8_t GetFrameDurationCode (void) const;
200  uint32_t GetFrameNumber (void) const;
201 
206  uint16_t GetSize (void) const;
207 private:
220 
221  uint8_t m_channelNr;
222  uint8_t m_ttg;
223  uint8_t m_rtg;
224 
227  uint32_t m_frameNumber;
228 };
229 
230 } // namespace ns3
231 
232 #endif /* OFDM_DCD_CHANNEL_ENCODINGS_H */
233 
234 // ----------------------------------------------------------------------------------------------------------
235 
236 #ifndef OFDM_DL_BURST_PROFILE_H
237 #define OFDM_DL_BURST_PROFILE_H
238 
239 #include <stdint.h>
240 #include "ns3/buffer.h"
241 
242 namespace ns3 {
243 
251 {
252 public:
254  enum Diuc
255  {
268  // 12 is reserved
269  DIUC_GAP = 13,
271  };
272 
273  OfdmDlBurstProfile (void);
274  ~OfdmDlBurstProfile (void);
275 
280  void SetType (uint8_t type);
285  void SetLength (uint8_t length);
290  void SetDiuc (uint8_t diuc);
291 
296  void SetFecCodeType (uint8_t fecCodeType);
297 
302  uint8_t GetType (void) const;
304  uint8_t GetLength (void) const;
306  uint8_t GetDiuc (void) const;
307 
309  uint8_t GetFecCodeType (void) const;
310 
312  uint16_t GetSize (void) const;
313 
326 private:
327  uint8_t m_type;
328  uint8_t m_length;
329  uint8_t m_diuc;
330 
331  // TLV Encoded information
332  uint8_t m_fecCodeType;
333 };
334 
335 } // namespace ns3
336 
337 #endif /* OFDM_DL_BURST_PROFILE_H */
338 
339 // ----------------------------------------------------------------------------------------------------------
340 
341 #ifndef DCD_H
342 #define DCD_H
343 
344 #include <stdint.h>
345 #include "ns3/header.h"
346 #include <vector>
347 
348 namespace ns3 {
349 
355 class Dcd : public Header
356 {
357 public:
358  Dcd (void);
359  virtual ~Dcd (void);
360 
365  void SetConfigurationChangeCount (uint8_t configurationChangeCount);
370  void SetChannelEncodings (OfdmDcdChannelEncodings channelEncodings);
375  void AddDlBurstProfile (OfdmDlBurstProfile dlBurstProfile);
380  void SetNrDlBurstProfiles (uint8_t nrDlBurstProfiles);
381 
386  uint8_t GetConfigurationChangeCount (void) const;
396  std::vector<OfdmDlBurstProfile> GetDlBurstProfiles (void) const;
401  uint8_t GetNrDlBurstProfiles (void) const;
402 
407  std::string GetName (void) const;
412  static TypeId GetTypeId (void);
413  virtual TypeId GetInstanceTypeId (void) const;
414  void Print (std::ostream &os) const;
415  uint32_t GetSerializedSize (void) const;
416  void Serialize (Buffer::Iterator start) const;
418 private:
419  uint8_t m_reserved;
422  std::vector<OfdmDlBurstProfile> m_dlBurstProfiles;
423 
425 };
426 
427 } // namespace ns3
428 
429 #endif /* DCD_H */
430 
431 // ----------------------------------------------------------------------------------------------------------
432 
433 #ifndef OFDM_DL_MAP_IE_H
434 #define OFDM_DL_MAP_IE_H
435 
436 #include <stdint.h>
437 #include "cid.h"
438 
439 namespace ns3 {
440 
447 {
448 public:
449  OfdmDlMapIe (void);
450  ~OfdmDlMapIe (void);
451 
456  void SetCid (Cid cid);
461  void SetDiuc (uint8_t diuc);
466  void SetPreamblePresent (uint8_t preamblePresent);
471  void SetStartTime (uint16_t startTime);
472 
477  Cid GetCid (void) const;
482  uint8_t GetDiuc (void) const;
487  uint8_t GetPreamblePresent (void) const;
492  uint16_t GetStartTime (void) const;
493 
498  uint16_t GetSize (void) const;
499 
512 private:
514  uint8_t m_diuc;
516  uint16_t m_startTime;
517 
518 };
519 
520 } // namespace ns3
521 
522 #endif /* OFDM_DL_MAP_IE_H */
523 
524 // ----------------------------------------------------------------------------------------------------------
525 
526 #ifndef DL_MAP_H
527 #define DL_MAP_H
528 
529 #include <stdint.h>
530 #include <vector>
531 #include "ns3/header.h"
532 #include "ns3/mac48-address.h"
533 
534 namespace ns3 {
535 
541 class DlMap : public Header
542 {
543 public:
544  DlMap (void);
545  virtual ~DlMap (void);
546 
551  void SetDcdCount (uint8_t dcdCount);
556  void SetBaseStationId (Mac48Address baseStationID);
561  void AddDlMapElement (OfdmDlMapIe dlMapElement);
562 
567  uint8_t GetDcdCount (void) const;
572  Mac48Address GetBaseStationId (void) const;
577  std::list<OfdmDlMapIe> GetDlMapElements (void) const;
578 
583  std::string GetName (void) const;
588  static TypeId GetTypeId (void);
589  virtual TypeId GetInstanceTypeId (void) const;
590  void Print (std::ostream &os) const;
591  uint32_t GetSerializedSize (void) const;
592  void Serialize (Buffer::Iterator start) const;
594 private:
595  uint8_t m_dcdCount;
597  std::list<OfdmDlMapIe> m_dlMapElements;
598  // m_paddingNibble; //fields to be implemented later on:
599 };
600 
601 } // namespace ns3
602 
603 #endif /* DL_MAP_H */
ns3::TypeId
a unique identifier for an interface.
Definition: type-id.h:59
ns3::DcdChannelEncodings::m_eirXPIrMax
uint16_t m_eirXPIrMax
EIRX IR MAX.
Definition: dl-mac-messages.h:109
ns3::DcdChannelEncodings::Write
Buffer::Iterator Write(Buffer::Iterator start) const
Write item.
Definition: dl-mac-messages.cc:84
ns3::OfdmDcdChannelEncodings::SetFrameDurationCode
void SetFrameDurationCode(uint8_t frameDurationCode)
Set frame duration code field.
Definition: dl-mac-messages.cc:144
ns3::DlMap::~DlMap
virtual ~DlMap(void)
Definition: dl-mac-messages.cc:556
ns3::OfdmDlMapIe::m_startTime
uint16_t m_startTime
start time
Definition: dl-mac-messages.h:516
ns3::OfdmDcdChannelEncodings::GetSize
uint16_t GetSize(void) const
Get size field.
Definition: dl-mac-messages.cc:192
ns3::OfdmDcdChannelEncodings::GetTtg
uint8_t GetTtg(void) const
Get TTG field.
Definition: dl-mac-messages.cc:162
ns3::OfdmDcdChannelEncodings::m_frameNumber
uint32_t m_frameNumber
frame number
Definition: dl-mac-messages.h:227
ns3::Cid
Cid class.
Definition: cid.h:38
ns3::DlMap::m_baseStationId
Mac48Address m_baseStationId
base station ID
Definition: dl-mac-messages.h:596
ns3::OfdmDlBurstProfile::m_fecCodeType
uint8_t m_fecCodeType
FEC code type.
Definition: dl-mac-messages.h:332
ns3::Dcd::GetDlBurstProfiles
std::vector< OfdmDlBurstProfile > GetDlBurstProfiles(void) const
Get DL burst profile field.
Definition: dl-mac-messages.cc:365
ns3::Dcd::SetNrDlBurstProfiles
void SetNrDlBurstProfiles(uint8_t nrDlBurstProfiles)
Set number DL burst profile field.
Definition: dl-mac-messages.cc:341
ns3::OfdmDcdChannelEncodings::SetTtg
void SetTtg(uint8_t ttg)
Set TTG field.
Definition: dl-mac-messages.cc:126
ns3::DcdChannelEncodings::m_frequency
uint32_t m_frequency
frequency
Definition: dl-mac-messages.h:110
ns3::DcdChannelEncodings::DoWrite
virtual Buffer::Iterator DoWrite(Buffer::Iterator start) const =0
Write item.
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_4
@ DIUC_BURST_PROFILE_4
Definition: dl-mac-messages.h:260
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::OfdmDcdChannelEncodings::SetFrameNumber
void SetFrameNumber(uint32_t frameNumber)
Set frame number field.
Definition: dl-mac-messages.cc:150
ns3::Dcd::AddDlBurstProfile
void AddDlBurstProfile(OfdmDlBurstProfile dlBurstProfile)
Add DL burst profile field.
Definition: dl-mac-messages.cc:347
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_9
@ DIUC_BURST_PROFILE_9
Definition: dl-mac-messages.h:265
ns3::OfdmDlMapIe::GetPreamblePresent
uint8_t GetPreamblePresent(void) const
Get preamble present field.
Definition: dl-mac-messages.cc:507
ns3::Dcd::Dcd
Dcd(void)
Definition: dl-mac-messages.cc:317
ns3::OfdmDcdChannelEncodings::DoRead
virtual Buffer::Iterator DoRead(Buffer::Iterator start)
Read item.
Definition: dl-mac-messages.cc:211
ns3::OfdmDcdChannelEncodings::DoWrite
virtual Buffer::Iterator DoWrite(Buffer::Iterator start) const
Write item.
Definition: dl-mac-messages.cc:198
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_1
@ DIUC_BURST_PROFILE_1
Definition: dl-mac-messages.h:257
ns3::OfdmDlMapIe::Write
Buffer::Iterator Write(Buffer::Iterator start) const
Wrtie item.
Definition: dl-mac-messages.cc:525
ns3::Dcd::GetSerializedSize
uint32_t GetSerializedSize(void) const
Definition: dl-mac-messages.cc:408
ns3::DlMap::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: dl-mac-messages.cc:614
ns3::OfdmDlMapIe::SetCid
void SetCid(Cid cid)
Set CID function.
Definition: dl-mac-messages.cc:471
ns3::Dcd::m_nrDlBurstProfiles
uint8_t m_nrDlBurstProfiles
number DL purst profiles
Definition: dl-mac-messages.h:424
ns3::OfdmDlMapIe::m_cid
Cid m_cid
CID.
Definition: dl-mac-messages.h:513
ns3::OfdmDlMapIe::~OfdmDlMapIe
~OfdmDlMapIe(void)
Definition: dl-mac-messages.cc:466
ns3::OfdmDlBurstProfile::SetLength
void SetLength(uint8_t length)
Set length field.
Definition: dl-mac-messages.cc:244
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_2
@ DIUC_BURST_PROFILE_2
Definition: dl-mac-messages.h:258
ns3::Dcd::SetConfigurationChangeCount
void SetConfigurationChangeCount(uint8_t configurationChangeCount)
Set configuration change count field.
Definition: dl-mac-messages.cc:329
ns3::DlMap::m_dcdCount
uint8_t m_dcdCount
DCD count.
Definition: dl-mac-messages.h:595
ns3::OfdmDlMapIe::GetCid
Cid GetCid(void) const
Set CID field.
Definition: dl-mac-messages.cc:495
ns3::OfdmDlMapIe::m_diuc
uint8_t m_diuc
DIUC.
Definition: dl-mac-messages.h:514
ns3::OfdmDlBurstProfile::DIUC_STC_ZONE
@ DIUC_STC_ZONE
Definition: dl-mac-messages.h:256
ns3::Mac48Address
an EUI-48 address
Definition: mac48-address.h:44
ns3::OfdmDlBurstProfile::GetLength
uint8_t GetLength(void) const
Definition: dl-mac-messages.cc:268
ns3::DcdChannelEncodings::GetFrequency
uint32_t GetFrequency(void) const
Get frequency function.
Definition: dl-mac-messages.cc:72
ns3::OfdmDlBurstProfile::~OfdmDlBurstProfile
~OfdmDlBurstProfile(void)
Definition: dl-mac-messages.cc:233
ns3::DlMap::DlMap
DlMap(void)
Definition: dl-mac-messages.cc:550
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_5
@ DIUC_BURST_PROFILE_5
Definition: dl-mac-messages.h:261
ns3::DlMap::GetSerializedSize
uint32_t GetSerializedSize(void) const
Definition: dl-mac-messages.cc:628
ns3::OfdmDlBurstProfile::m_type
uint8_t m_type
type
Definition: dl-mac-messages.h:327
ns3::Dcd::m_reserved
uint8_t m_reserved
changed as per the amendment 802.16e-2005
Definition: dl-mac-messages.h:419
ns3::DlMap::GetBaseStationId
Mac48Address GetBaseStationId(void) const
Get base station ID field.
Definition: dl-mac-messages.cc:585
ns3::DcdChannelEncodings::Read
Buffer::Iterator Read(Buffer::Iterator start)
Read item.
Definition: dl-mac-messages.cc:94
ns3::DlMap::AddDlMapElement
void AddDlMapElement(OfdmDlMapIe dlMapElement)
Add DL Map element field.
Definition: dl-mac-messages.cc:573
ns3::DlMap::SetDcdCount
void SetDcdCount(uint8_t dcdCount)
Set DCD count field.
Definition: dl-mac-messages.cc:561
ns3::OfdmDlBurstProfile::m_diuc
uint8_t m_diuc
diuc
Definition: dl-mac-messages.h:329
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_3
@ DIUC_BURST_PROFILE_3
Definition: dl-mac-messages.h:259
ns3::DcdChannelEncodings::GetSize
uint16_t GetSize(void) const
Get size field.
Definition: dl-mac-messages.cc:78
ns3::Dcd::~Dcd
virtual ~Dcd(void)
Definition: dl-mac-messages.cc:324
ns3::DlMap::GetDlMapElements
std::list< OfdmDlMapIe > GetDlMapElements(void) const
Get DL Map elements field.
Definition: dl-mac-messages.cc:591
ns3::OfdmDlBurstProfile::GetDiuc
uint8_t GetDiuc(void) const
Definition: dl-mac-messages.cc:274
ns3::OfdmDcdChannelEncodings::~OfdmDcdChannelEncodings
~OfdmDcdChannelEncodings(void)
Definition: dl-mac-messages.cc:115
ns3::DcdChannelEncodings::SetBsEirp
void SetBsEirp(uint16_t bs_eirp)
Set BS EIRP field.
Definition: dl-mac-messages.cc:42
startTime
double startTime
Definition: tcp-nsc-comparison.cc:45
ns3::Dcd::m_dlBurstProfiles
std::vector< OfdmDlBurstProfile > m_dlBurstProfiles
vector of download burst profiles
Definition: dl-mac-messages.h:422
ns3::Dcd::m_channelEncodings
OfdmDcdChannelEncodings m_channelEncodings
TLV Encoded information for the overall channel.
Definition: dl-mac-messages.h:421
ns3::Dcd::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition: dl-mac-messages.cc:383
ns3::Dcd::Print
void Print(std::ostream &os) const
Definition: dl-mac-messages.cc:400
visualizer.core.start
def start()
Definition: core.py:1855
ns3::Dcd::GetConfigurationChangeCount
uint8_t GetConfigurationChangeCount(void) const
Get configuration change count field.
Definition: dl-mac-messages.cc:353
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_11
@ DIUC_BURST_PROFILE_11
Definition: dl-mac-messages.h:267
ns3::DcdChannelEncodings::DoRead
virtual Buffer::Iterator DoRead(Buffer::Iterator start)=0
Read item.
ns3::OfdmDlMapIe
This class implements the OFDM DL-MAP information element as described by "IEEE Standard for Local an...
Definition: dl-mac-messages.h:447
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_6
@ DIUC_BURST_PROFILE_6
Definition: dl-mac-messages.h:262
ns3::OfdmDcdChannelEncodings::m_baseStationId
Mac48Address m_baseStationId
base station ID
Definition: dl-mac-messages.h:225
ns3::OfdmDlBurstProfile::GetSize
uint16_t GetSize(void) const
Definition: dl-mac-messages.cc:286
ns3::OfdmDlBurstProfile::DIUC_END_OF_MAP
@ DIUC_END_OF_MAP
Definition: dl-mac-messages.h:270
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_10
@ DIUC_BURST_PROFILE_10
Definition: dl-mac-messages.h:266
ns3::OfdmDlBurstProfile::Write
Buffer::Iterator Write(Buffer::Iterator start) const
Write item.
Definition: dl-mac-messages.cc:292
ns3::DlMap::Serialize
void Serialize(Buffer::Iterator start) const
Definition: dl-mac-messages.cc:643
ns3::OfdmDcdChannelEncodings
This class implements the OFDM DCD channel encodings as described by "IEEE Standard for Local and met...
Definition: dl-mac-messages.h:133
ns3::OfdmDcdChannelEncodings::m_rtg
uint8_t m_rtg
RTG.
Definition: dl-mac-messages.h:223
ns3::DcdChannelEncodings::SetFrequency
void SetFrequency(uint32_t frequency)
Set frequency field.
Definition: dl-mac-messages.cc:54
ns3::Dcd::GetChannelEncodings
OfdmDcdChannelEncodings GetChannelEncodings(void) const
Get channel encodings field.
Definition: dl-mac-messages.cc:359
ns3::OfdmDlMapIe::m_preamblePresent
uint8_t m_preamblePresent
preamble present
Definition: dl-mac-messages.h:515
ns3::OfdmDcdChannelEncodings::m_ttg
uint8_t m_ttg
TTG.
Definition: dl-mac-messages.h:222
ns3::OfdmDlBurstProfile::SetType
void SetType(uint8_t type)
Set type field.
Definition: dl-mac-messages.cc:238
ns3::OfdmDcdChannelEncodings::GetBaseStationId
Mac48Address GetBaseStationId(void) const
Get base station ID field.
Definition: dl-mac-messages.cc:174
ns3::Header
Protocol header serialization and deserialization.
Definition: header.h:43
ns3::DlMap::SetBaseStationId
void SetBaseStationId(Mac48Address baseStationID)
Set base station ID field.
Definition: dl-mac-messages.cc:567
ns3::OfdmDlBurstProfile::GetFecCodeType
uint8_t GetFecCodeType(void) const
Definition: dl-mac-messages.cc:280
ns3::OfdmDlMapIe::SetDiuc
void SetDiuc(uint8_t diuc)
Set DIUC field.
Definition: dl-mac-messages.cc:477
ns3::OfdmDlBurstProfile::GetType
uint8_t GetType(void) const
Get type function.
Definition: dl-mac-messages.cc:262
ns3::DlMap
This class implements DL-MAP as described by "IEEE Standard for Local and metropolitan area networks ...
Definition: dl-mac-messages.h:542
ns3::OfdmDcdChannelEncodings::GetRtg
uint8_t GetRtg(void) const
Get RTG field.
Definition: dl-mac-messages.cc:168
ns3::OfdmDlBurstProfile::m_length
uint8_t m_length
length
Definition: dl-mac-messages.h:328
ns3::Dcd::m_configurationChangeCount
uint8_t m_configurationChangeCount
configuration change count
Definition: dl-mac-messages.h:420
ns3::Header::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)=0
Deserialize the object from a buffer iterator.
ns3::OfdmDcdChannelEncodings::m_frameDurationCode
uint8_t m_frameDurationCode
frame duration code
Definition: dl-mac-messages.h:226
cid.h
ns3::Dcd::GetNrDlBurstProfiles
uint8_t GetNrDlBurstProfiles(void) const
Get number DL burst profiles field.
Definition: dl-mac-messages.cc:371
ns3::OfdmDlMapIe::GetStartTime
uint16_t GetStartTime(void) const
Get start time field.
Definition: dl-mac-messages.cc:513
ns3::DcdChannelEncodings
This class implements the DCD channel encodings as described by "IEEE Standard for Local and metropol...
Definition: dl-mac-messages.h:39
ns3::OfdmDlMapIe::GetDiuc
uint8_t GetDiuc(void) const
Get DIUC field.
Definition: dl-mac-messages.cc:501
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition: buffer.h:99
ns3::DlMap::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition: dl-mac-messages.cc:603
ns3::DlMap::Print
void Print(std::ostream &os) const
Definition: dl-mac-messages.cc:620
ns3::DcdChannelEncodings::SetEirxPIrMax
void SetEirxPIrMax(uint16_t rss_ir_max)
Set EIRX IR MAX field.
Definition: dl-mac-messages.cc:48
ns3::Dcd::GetName
std::string GetName(void) const
Get name field.
Definition: dl-mac-messages.cc:377
ns3::OfdmDlBurstProfile
This class implements the OFDM Downlink burst profile descriptor as described by "IEEE Standard for L...
Definition: dl-mac-messages.h:251
ns3::OfdmDcdChannelEncodings::GetFrameNumber
uint32_t GetFrameNumber(void) const
Get frame number field.
Definition: dl-mac-messages.cc:186
ns3::OfdmDcdChannelEncodings::GetFrameDurationCode
uint8_t GetFrameDurationCode(void) const
Get frame duration code field.
Definition: dl-mac-messages.cc:180
ns3::Dcd::GetInstanceTypeId
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: dl-mac-messages.cc:394
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_8
@ DIUC_BURST_PROFILE_8
Definition: dl-mac-messages.h:264
ns3::DcdChannelEncodings::m_bsEirp
uint16_t m_bsEirp
BS EIRP.
Definition: dl-mac-messages.h:108
ns3::OfdmDcdChannelEncodings::m_channelNr
uint8_t m_channelNr
channel number
Definition: dl-mac-messages.h:221
ns3::OfdmDlMapIe::GetSize
uint16_t GetSize(void) const
Get size.
Definition: dl-mac-messages.cc:519
ns3::DlMap::GetDcdCount
uint8_t GetDcdCount(void) const
Get DCD count field.
Definition: dl-mac-messages.cc:579
ns3::DcdChannelEncodings::~DcdChannelEncodings
virtual ~DcdChannelEncodings(void)
Definition: dl-mac-messages.cc:37
ns3::DcdChannelEncodings::GetEirxPIrMax
uint16_t GetEirxPIrMax(void) const
Get EIRX IR MAX field.
Definition: dl-mac-messages.cc:66
ns3::Dcd::SetChannelEncodings
void SetChannelEncodings(OfdmDcdChannelEncodings channelEncodings)
Set channel encodings field.
Definition: dl-mac-messages.cc:335
ns3::DlMap::m_dlMapElements
std::list< OfdmDlMapIe > m_dlMapElements
DL Map elements.
Definition: dl-mac-messages.h:597
ns3::OfdmDlBurstProfile::OfdmDlBurstProfile
OfdmDlBurstProfile(void)
Definition: dl-mac-messages.cc:225
ns3::OfdmDcdChannelEncodings::SetChannelNr
void SetChannelNr(uint8_t channelNr)
Set channel number field.
Definition: dl-mac-messages.cc:120
ns3::DcdChannelEncodings::DcdChannelEncodings
DcdChannelEncodings(void)
Definition: dl-mac-messages.cc:30
ns3::OfdmDlBurstProfile::Diuc
Diuc
DIUC enumeration.
Definition: dl-mac-messages.h:255
ns3::OfdmDlBurstProfile::DIUC_BURST_PROFILE_7
@ DIUC_BURST_PROFILE_7
Definition: dl-mac-messages.h:263
ns3::DlMap::GetName
std::string GetName(void) const
Get name field.
Definition: dl-mac-messages.cc:597
ns3::OfdmDlBurstProfile::Read
Buffer::Iterator Read(Buffer::Iterator start)
Read item.
Definition: dl-mac-messages.cc:303
ns3::OfdmDlBurstProfile::SetFecCodeType
void SetFecCodeType(uint8_t fecCodeType)
Set FEC code type.
Definition: dl-mac-messages.cc:256
ns3::OfdmDlMapIe::SetPreamblePresent
void SetPreamblePresent(uint8_t preamblePresent)
Set preamble present field.
Definition: dl-mac-messages.cc:483
ns3::OfdmDlMapIe::Read
Buffer::Iterator Read(Buffer::Iterator start)
Read item.
Definition: dl-mac-messages.cc:536
ns3::OfdmDcdChannelEncodings::SetBaseStationId
void SetBaseStationId(Mac48Address baseStationId)
Set base station ID field.
Definition: dl-mac-messages.cc:138
ns3::Dcd::Serialize
void Serialize(Buffer::Iterator start) const
Definition: dl-mac-messages.cc:423
ns3::OfdmDcdChannelEncodings::GetChannelNr
uint8_t GetChannelNr(void) const
Get channel number field.
Definition: dl-mac-messages.cc:156
ns3::OfdmDlMapIe::OfdmDlMapIe
OfdmDlMapIe(void)
Definition: dl-mac-messages.cc:458
ns3::DcdChannelEncodings::GetBsEirp
uint16_t GetBsEirp(void) const
Get BS EIRP field.
Definition: dl-mac-messages.cc:60
ns3::Dcd
This class implements Downlink channel descriptor as described by "IEEE Standard for Local and metrop...
Definition: dl-mac-messages.h:356
ns3::OfdmDlBurstProfile::DIUC_GAP
@ DIUC_GAP
Definition: dl-mac-messages.h:269
ns3::OfdmDlBurstProfile::SetDiuc
void SetDiuc(uint8_t diuc)
Set DIUC field.
Definition: dl-mac-messages.cc:250
ns3::OfdmDcdChannelEncodings::SetRtg
void SetRtg(uint8_t rtg)
Set RTG field.
Definition: dl-mac-messages.cc:132
ns3::OfdmDlMapIe::SetStartTime
void SetStartTime(uint16_t startTime)
Set start time field.
Definition: dl-mac-messages.cc:489
ns3::OfdmDcdChannelEncodings::OfdmDcdChannelEncodings
OfdmDcdChannelEncodings(void)
Definition: dl-mac-messages.cc:105