This file is indexed.

/usr/include/ns3/ul-mac-messages.h is in libns3-dev 3.13+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2007,2008,2009 INRIA, UDcast
 *
 * 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
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Authors: Jahanzeb Farooq <jahanzeb.farooq@sophia.inria.fr>
 *          Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
 *                               <amine.ismail@UDcast.com>
 */


#ifndef UCD_CHANNEL_ENCODINGS_H
#define UCD_CHANNEL_ENCODINGS_H

#include <stdint.h>
#include "ns3/buffer.h"
#include <list>

namespace ns3 {

/**
 * \ingroup wimax
 * \brief This class implements the UCD channel encodings as described by "IEEE Standard for
 * Local and metropolitan area networks Part 16: Air Interface for Fixed Broadband Wireless Access Systems"
 * 11.3.1 UCD channel encodings, page 651
 *
 */
class UcdChannelEncodings
{
public:
  UcdChannelEncodings (void);
  virtual ~UcdChannelEncodings (void);

  void SetBwReqOppSize (uint16_t bwReqOppSize);
  void SetRangReqOppSize (uint16_t rangReqOppSize);
  void SetFrequency (uint32_t frequency);

  uint16_t GetBwReqOppSize (void) const;
  uint16_t GetRangReqOppSize (void) const;
  uint32_t GetFrequency (void) const;

  uint16_t GetSize (void) const;

  Buffer::Iterator Write (Buffer::Iterator start) const;
  Buffer::Iterator Read (Buffer::Iterator start);
private:
  virtual Buffer::Iterator DoWrite (Buffer::Iterator start) const = 0;
  virtual Buffer::Iterator DoRead (Buffer::Iterator start) = 0;


  uint16_t m_bwReqOppSize;
  uint16_t m_rangReqOppSize;
  uint32_t m_frequency;
};

} // namespace ns3

#endif /* UCD_CHANNEL_ENCODINGS_H */

// ----------------------------------------------------------------------------------------------------------

#ifndef OFDM_UCD_CHANNEL_ENCODINGS_H
#define OFDM_UCD_CHANNEL_ENCODINGS_H

#include <stdint.h>

namespace ns3 {

class OfdmUcdChannelEncodings : public UcdChannelEncodings
{
  /**
   * \brief This class implements the UCD channel encodings as described by "IEEE Standard for
   * Local and metropolitan area networks Part 16: Air Interface for Fixed Broadband Wireless Access Systems"
   * 11.3.1 UCD channel encodings, page 651
   *
   */
public:
  OfdmUcdChannelEncodings (void);
  ~OfdmUcdChannelEncodings (void);

  void SetSbchnlReqRegionFullParams (uint8_t sbchnlReqRegionFullParams);
  void SetSbchnlFocContCodes (uint8_t sbchnlFocContCodes);

  uint8_t GetSbchnlReqRegionFullParams (void) const;
  uint8_t GetSbchnlFocContCodes (void) const;

  uint16_t GetSize (void) const;
private:
  virtual Buffer::Iterator DoWrite (Buffer::Iterator start) const;
  virtual Buffer::Iterator DoRead (Buffer::Iterator start);

  uint8_t m_sbchnlReqRegionFullParams;
  uint8_t m_sbchnlFocContCodes;
};

} // namespace ns3

#endif /* OFDM_UCD_CHANNEL_ENCODINGS_H */

// ----------------------------------------------------------------------------------------------------------

#ifndef OFDM_UL_BURST_PROFILE_H
#define OFDM_UL_BURST_PROFILE_H

#include <stdint.h>
#include "ns3/buffer.h"

namespace ns3 {

class OfdmUlBurstProfile
{
  /**
   * \brief This class implements the UL burst profile as described by "IEEE Standard for
   * Local and metropolitan area networks Part 16: Air Interface for Fixed Broadband Wireless Access Systems"
   * 11.3.1.1 Uplink burst profile encodings, page 655
   *
   */
public:
  enum Uiuc
  {
    UIUC_INITIAL_RANGING = 1,
    UIUC_REQ_REGION_FULL,
    UIUC_REQ_REGION_FOCUSED,
    UIUC_FOCUSED_CONTENTION_IE,
    UIUC_BURST_PROFILE_5,
    UIUC_BURST_PROFILE_6,
    UIUC_BURST_PROFILE_7,
    UIUC_BURST_PROFILE_8,
    UIUC_BURST_PROFILE_9,
    UIUC_BURST_PROFILE_10,
    UIUC_BURST_PROFILE_11,
    UIUC_BURST_PROFILE_12,
    UIUC_SUBCH_NETWORK_ENTRY,
    UIUC_END_OF_MAP
  };

  OfdmUlBurstProfile (void);
  ~OfdmUlBurstProfile (void);

  void SetType (uint8_t type);
  void SetLength (uint8_t length);
  void SetUiuc (uint8_t uiuc);
  void SetFecCodeType (uint8_t fecCodeType);

  uint8_t GetType (void) const;
  uint8_t GetLength (void) const;
  uint8_t GetUiuc (void) const;
  uint8_t GetFecCodeType (void) const;

  uint16_t GetSize (void) const;

  Buffer::Iterator Write (Buffer::Iterator start) const;
  Buffer::Iterator Read (Buffer::Iterator start);
private:
  uint8_t m_type;
  uint8_t m_length;
  uint8_t m_uiuc;

  // TLV Encoded information
  uint8_t m_fecCodeType;
};

} // namespace ns3

#endif /* OFDM_UL_BURST_PROFILE_H */

// ----------------------------------------------------------------------------------------------------------

#ifndef UCD_H
#define UCD_H

#include <stdint.h>
#include "ns3/header.h"
#include <vector>

namespace ns3 {

class Ucd : public Header
{
  /**
   * \brief This class implements the UCD message as described by "IEEE Standard for
   * Local and metropolitan area networks Part 16: Air Interface for Fixed Broadband Wireless Access Systems"
   * 6.3.2.3.3 Uplink Channel Descriptor (UCD) message, page 47
   *
   */
public:
  Ucd (void);
  virtual ~Ucd (void);

  void SetConfigurationChangeCount (uint8_t ucdCount);
  void SetRangingBackoffStart (uint8_t rangingBackoffStart);
  void SetRangingBackoffEnd (uint8_t rangingBackoffEnd);
  void SetRequestBackoffStart (uint8_t requestBackoffStart);
  void SetRequestBackoffEnd (uint8_t requestBackoffEnd);
  void SetChannelEncodings (OfdmUcdChannelEncodings channelEncodings);
  void AddUlBurstProfile (OfdmUlBurstProfile ulBurstProfile);
  void SetNrUlBurstProfiles (uint8_t nrUlBurstProfiles);

  uint8_t GetConfigurationChangeCount (void) const;
  uint8_t GetRangingBackoffStart (void) const;
  uint8_t GetRangingBackoffEnd (void) const;
  uint8_t GetRequestBackoffStart (void) const;
  uint8_t GetRequestBackoffEnd (void) const;
  OfdmUcdChannelEncodings GetChannelEncodings (void) const;
  std::vector<OfdmUlBurstProfile> GetUlBurstProfiles (void) const;
  uint8_t GetNrUlBurstProfiles (void) const;

  std::string GetName (void) const;
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  void Print (std::ostream &os) const;
  uint32_t GetSerializedSize (void) const;
  void Serialize (Buffer::Iterator start) const;
  uint32_t Deserialize (Buffer::Iterator start);
private:
  uint8_t m_configurationChangeCount;
  uint8_t m_rangingBackoffStart;
  uint8_t m_rangingBackoffEnd;
  uint8_t m_requestBackoffStart;
  uint8_t m_requestBackoffEnd;
  OfdmUcdChannelEncodings m_channelEncodings; // TLV Encoded information for the overall channel
  std::vector<OfdmUlBurstProfile> m_ulBurstProfiles;

  uint8_t m_nrUlBurstProfiles;
};

} // namespace ns3

#endif /* UCD_H */

// ----------------------------------------------------------------------------------------------------------

#ifndef OFDM_UL_MAP_IE_H
#define OFDM_UL_MAP_IE_H

#include <stdint.h>
#include "ns3/header.h"
#include "cid.h"

namespace ns3 {

class OfdmUlMapIe
{
  /**
   * \brief This class implements the UL-MAP_IE message as described by "IEEE Standard for
   * Local and metropolitan area networks Part 16: Air Interface for Fixed Broadband Wireless Access Systems"
   * 6.3.2.3.43.7 UL-MAP_IE, page 115
   *
   */

public:
  OfdmUlMapIe (void);
  ~OfdmUlMapIe (void);

  void SetCid (Cid cid);
  void SetStartTime (uint16_t startTime);
  void SetSubchannelIndex (uint8_t subchannelIndex);
  void SetUiuc (uint8_t uiuc);
  void SetDuration (uint16_t duration);
  void SetMidambleRepetitionInterval (uint8_t midambleRepetitionInterval);

  Cid GetCid (void) const;
  uint16_t GetStartTime (void) const;
  uint8_t GetSubchannelIndex (void) const;
  uint8_t GetUiuc (void) const;
  uint16_t GetDuration (void) const;
  uint8_t GetMidambleRepetitionInterval (void) const;

  uint16_t GetSize (void) const;

  Buffer::Iterator Write (Buffer::Iterator start) const;
  Buffer::Iterator Read (Buffer::Iterator start);
private:
  Cid m_cid;
  uint16_t m_startTime;
  uint8_t m_subchannelIndex;
  uint8_t m_uiuc;
  uint16_t m_duration;
  uint8_t m_midambleRepetitionInterval;

  // fields to be implemented later on:
  // m_focusedContentionIe()
  // m_subchannelizedNetworkEntryIe()
  // m_ulExtendedIe()
  // m_paddingNibble;
};

} // namespace ns3

#endif /* OFDM_UL_MAP_IE_H */

// ----------------------------------------------------------------------------------------------------------

#ifndef UL_MAP_H
#define UL_MAP_H

#include <stdint.h>
#include "ns3/header.h"
#include <vector>

namespace ns3 {

class UlMap : public Header
{
  /**
   * \brief This class implements the UL-MAP_IE message as described by "IEEE Standard for
   * Local and metropolitan area networks Part 16: Air Interface for Fixed Broadband Wireless Access Systems"
   * 8.2.1.8.2 Compressed UL-MAP, page 404
   *
   */
public:
  UlMap (void);
  virtual ~UlMap (void);

  void SetUcdCount (uint8_t ucdCount);
  void SetAllocationStartTime (uint32_t allocationStartTime);
  void AddUlMapElement (OfdmUlMapIe ulMapElement);

  uint8_t GetUcdCount (void) const;
  uint32_t GetAllocationStartTime (void) const;
  std::list<OfdmUlMapIe> GetUlMapElements (void) const;

  std::string GetName (void) const;
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  void Print (std::ostream &os) const;
  uint32_t GetSerializedSize (void) const;
  void Serialize (Buffer::Iterator start) const;
  uint32_t Deserialize (Buffer::Iterator start);
private:
  uint8_t m_reserved; // changed as per the amendment 802.16e-2005

  uint8_t m_ucdCount;
  uint32_t m_allocationStartTime;
  std::list<OfdmUlMapIe> m_ulMapElements;
};

} // namespace ns3

#endif /* UL_MAP_H */