This file is indexed.

/usr/include/ns3.27/ns3/epc-x2-header.h is in libns3-dev 3.27+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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2012 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
 *
 * 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
 *
 * Author: Manuel Requena <manuel.requena@cttc.es>
 */

#ifndef EPC_X2_HEADER_H
#define EPC_X2_HEADER_H

#include "ns3/epc-x2-sap.h"
#include "ns3/header.h"

#include <vector>


namespace ns3 {


class EpcX2Header : public Header
{
public:
  EpcX2Header ();
  virtual ~EpcX2Header ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get message type function
   * \returns the message type
   */
  uint8_t GetMessageType () const;
  /**
   * Set message type function
   * \param messageType the message type
   */
  void SetMessageType (uint8_t messageType);

  /**
   * Get procedure code function
   * \returns the procedure code
   */
  uint8_t GetProcedureCode () const;
  /**
   * Set procedure code function
   * \param procedureCode the procedure code
   */
  void SetProcedureCode (uint8_t procedureCode);

  /**
   * Set length of IEs function
   * \param lengthOfIes the length of IEs
   */
  void SetLengthOfIes (uint32_t lengthOfIes);
  /**
   * Set number of IEs function
   * \param numberOfIes the number of IEs
   */
  void SetNumberOfIes (uint32_t numberOfIes);


  /// Procedure code enumeration
  enum ProcedureCode_t {
    HandoverPreparation     = 0,
    LoadIndication          = 2,
    SnStatusTransfer        = 4,
    UeContextRelease        = 5,
    ResourceStatusReporting = 10
  };

  /// Type of message enumeration
  enum TypeOfMessage_t {
    InitiatingMessage       = 0,
    SuccessfulOutcome       = 1,
    UnsuccessfulOutcome     = 2
  };

private:
  uint8_t m_messageType; ///< message type
  uint8_t m_procedureCode; ///< procedure code

  uint32_t m_lengthOfIes; ///< length of IEs
  uint32_t m_numberOfIes; ///< number of IEs
};


/**
 * EpcX2HandoverRequestHeader
 */
class EpcX2HandoverRequestHeader : public Header
{
public:
  EpcX2HandoverRequestHeader ();
  virtual ~EpcX2HandoverRequestHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get old ENB X2 AP ID function
   * \returns the old ENB UE X2 AP ID
   */
  uint16_t GetOldEnbUeX2apId () const;
  /**
   * Set old ENB X2 AP ID function
   * \param x2apId the X2 AP ID
   */
  void SetOldEnbUeX2apId (uint16_t x2apId);

  /**
   * Get cause function
   * \returns the cause
   */
  uint16_t GetCause () const;
  /**
   * Set cause function
   * \param cause
   */
  void SetCause (uint16_t cause);

  /**
   * Get target cell id function
   * \returns the target cell ID
   */
  uint16_t GetTargetCellId () const;
  /**
   * Set target cell id function
   * \param targetCellId the target cell ID
   */
  void SetTargetCellId (uint16_t targetCellId);

  /**
   * Get MME UE S1 AP ID function
   * \returns the MME UE S1 AP ID
   */
  uint32_t GetMmeUeS1apId () const;
  /**
   * Set MME UE S1 AP ID function
   * \param mmeUeS1apId the MME UE S1 AP ID
   */
  void SetMmeUeS1apId (uint32_t mmeUeS1apId);

  /**
   * Get bearers function
   * \returns <EpcX2Sap::ErabToBeSetupItem>
   */
  std::vector <EpcX2Sap::ErabToBeSetupItem> GetBearers () const;
  /**
   * Set bearers function
   * \param bearers std::vector <EpcX2Sap::ErabToBeSetupItem>
   */ 
  void SetBearers (std::vector <EpcX2Sap::ErabToBeSetupItem> bearers);

  /**
   * Get UE Aggregate Max Bit Rate Downlink function
   * \returns the UE aggregate max bit rate downlink
   */
  uint64_t GetUeAggregateMaxBitRateDownlink () const;
  /**
   * Set UE Aggregrate Max Bit Rate Downlink function
   * \param bitRate the bit rate
   */
  void SetUeAggregateMaxBitRateDownlink (uint64_t bitRate);

  /**
   * Get UE Aggregrate Max Bit Rate Uplik function
   * \returns the UE aggregate max bit rate uplink
   */
  uint64_t GetUeAggregateMaxBitRateUplink () const;
  /**
   * Set UE Aggregrate Max Bit Rate Uplik function
   * \param bitRate the bit rate
   */
  void SetUeAggregateMaxBitRateUplink (uint64_t bitRate);

  /**
   * Get length of IEs
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Get number of IEs
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< header length

  uint16_t          m_oldEnbUeX2apId; ///< old ENB UE X1 AP ID
  uint16_t          m_cause; ///< cause
  uint16_t          m_targetCellId; ///< target cell ID
  uint32_t          m_mmeUeS1apId; ///< MME UE S1 AP ID
  uint64_t          m_ueAggregateMaxBitRateDownlink; ///< aggregate max bit rate downlink
  uint64_t          m_ueAggregateMaxBitRateUplink; ///< aggregate max bit rate uplink
  std::vector <EpcX2Sap::ErabToBeSetupItem> m_erabsToBeSetupList; ///< ERAB to be setup list
};

/**
 * EpcX2HandoverRequestAckHeader
 */
class EpcX2HandoverRequestAckHeader : public Header
{
public:
  EpcX2HandoverRequestAckHeader ();
  virtual ~EpcX2HandoverRequestAckHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get old ENB UE X2 AP ID function
   * \returns the old ENB UE X2 AP ID
   */
  uint16_t GetOldEnbUeX2apId () const;
  /**
   * Set old ENB UE X2 AP ID function
   * \param x2apId the old ENB UE X2 AP ID
   */
  void SetOldEnbUeX2apId (uint16_t x2apId);

  /**
   * Get new ENB UE X2 AP ID function
   * \returns the new ENB UE X2 AP ID
   */
  uint16_t GetNewEnbUeX2apId () const;
  /**
   * Set new ENB UE X2 AP ID function
   * \param x2apId the new ENB UE X2 AP ID
   */
  void SetNewEnbUeX2apId (uint16_t x2apId);

  /**
   * Get admittied bearers function
   * \returns <EpcX2Sap::ErabAdmittedItem>
   */
  std::vector <EpcX2Sap::ErabAdmittedItem> GetAdmittedBearers () const;
  /**
   * Set admitted bearers function
   * \param bearers the admitted bearers
   */
  void SetAdmittedBearers (std::vector <EpcX2Sap::ErabAdmittedItem> bearers);

  /**
   * Get not admitted bearers function
   * \returns the not admitted bearers
   */
  std::vector <EpcX2Sap::ErabNotAdmittedItem> GetNotAdmittedBearers () const;
  /**
   * Set not admitted bearers function
   * \param bearers the not admitted bearers
   */
  void SetNotAdmittedBearers (std::vector <EpcX2Sap::ErabNotAdmittedItem> bearers);

  /**
   * Get length of IEs function
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Get number of IEs function
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< header length

  uint16_t          m_oldEnbUeX2apId; ///< old ENB UE X2 AP ID
  uint16_t          m_newEnbUeX2apId; ///< new ENB UE X2 AP ID
  std::vector <EpcX2Sap::ErabAdmittedItem>     m_erabsAdmittedList; ///< ERABs admitted list
  std::vector <EpcX2Sap::ErabNotAdmittedItem>  m_erabsNotAdmittedList; ///< ERABs not admitted list
};


/**
 * EpcX2HandoverPreparationFailureHeader
 */
class EpcX2HandoverPreparationFailureHeader : public Header
{
public:
  EpcX2HandoverPreparationFailureHeader ();
  virtual ~EpcX2HandoverPreparationFailureHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get old ENB UE X2 AP ID function
   * \returns the old ENB UE X2 AP ID
   */
  uint16_t GetOldEnbUeX2apId () const;
  /**
   * Set old ENB UE X2 AP ID function
   * \param x2apId the old ENB UE X2 AP ID
   */
  void SetOldEnbUeX2apId (uint16_t x2apId);

  /**
   * Get cause function
   * \returns the cause
   */
  uint16_t GetCause () const;
  /**
   * Set cause function
   * \param cause
   */
  void SetCause (uint16_t cause);

  /**
   * Get criticality diagnostics function
   * \returns the criticality diagnostics
   */
  uint16_t GetCriticalityDiagnostics () const;
  /**
   * Set criticality diagnostics function
   * \param criticalityDiagnostics the criticality diagnostics
   */
  void SetCriticalityDiagnostics (uint16_t criticalityDiagnostics);

  /**
   * Get length of IEs function
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Get number of IEs function
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< header length

  uint16_t          m_oldEnbUeX2apId; ///< old ENB UE X2 AP ID
  uint16_t          m_cause; ///< cause
  uint16_t          m_criticalityDiagnostics; ///< criticality diagnostics
};


/**
 * EpcX2SnStatusTransferHeader
 */
class EpcX2SnStatusTransferHeader : public Header
{
public:
  EpcX2SnStatusTransferHeader ();
  virtual ~EpcX2SnStatusTransferHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get old ENB UE X2 AP ID function
   * \returns the old ENB UE X2 AP ID
   */
  uint16_t GetOldEnbUeX2apId () const;
  /**
   * Set old ENB UE X2 AP ID function
   * \param x2apId the old ENB UE X2 AP ID
   */
  void SetOldEnbUeX2apId (uint16_t x2apId);

  /**
   * Get new ENB UE X2 AP ID function
   * \returns the new ENB UE X2AP ID
   */
  uint16_t GetNewEnbUeX2apId () const;
  /**
   * Set new ENB UE X2 AP ID function
   * \param x2apId the new ENB UE X2AP ID
   */
  void SetNewEnbUeX2apId (uint16_t x2apId);

  /**
   * Get ERABs subject to status transfer list function
   * \returns std::vector <EpcX2Sap::ErabsSubjectToStatusTransferItem>
   */
  std::vector <EpcX2Sap::ErabsSubjectToStatusTransferItem> GetErabsSubjectToStatusTransferList () const;
  /**
   * Set ERABs subject to status transfer list function
   * \param erabs std::vector <EpcX2Sap::ErabsSubjectToStatusTransferItem>
   */
  void SetErabsSubjectToStatusTransferList (std::vector <EpcX2Sap::ErabsSubjectToStatusTransferItem> erabs);

  /**
   * Get length of IEs function
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Get number of IEs function
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< header length

  uint16_t          m_oldEnbUeX2apId; ///< old ENB UE X2 AP ID 
  uint16_t          m_newEnbUeX2apId; ///< new ENB UE X2 AP ID
  std::vector <EpcX2Sap::ErabsSubjectToStatusTransferItem> m_erabsSubjectToStatusTransferList; ///< ERABs subject to status transfer list
};

/**
 * EpcX2UeContextReleaseHeader
 */
class EpcX2UeContextReleaseHeader : public Header
{
public:
  EpcX2UeContextReleaseHeader ();
  virtual ~EpcX2UeContextReleaseHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get old ENB UE X2 AP ID function
   * \returns the old ENB UE X2 AP ID
   */
  uint16_t GetOldEnbUeX2apId () const;
  /**
   * Set old ENB UE X2 AP ID function
   * \param x2apId the old ENB UE X2 AP ID
   */
  void SetOldEnbUeX2apId (uint16_t x2apId);

  /**
   * Get new ENB UE X2 AP ID function
   * \returns the new ENB UE X2 AP ID
   */
  uint16_t GetNewEnbUeX2apId () const;
  /**
   * Set new ENB UE X2 AP ID function
   * \param x2apId the new ENB UE X2 AP ID
   */
  void SetNewEnbUeX2apId (uint16_t x2apId);

  /**
   * Get length of IEs function
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Set length of IEs function
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< header length

  uint16_t          m_oldEnbUeX2apId; ///< old ENB UE X2 AP ID
  uint16_t          m_newEnbUeX2apId; ///< new ENB UE X2 AP ID
};


/**
 * EpcX2LoadInformationHeader
 */
class EpcX2LoadInformationHeader : public Header
{
public:
  EpcX2LoadInformationHeader ();
  virtual ~EpcX2LoadInformationHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get cell information list function
   * \returns std::vector <EpcX2Sap::CellInformationItem>
   */
  std::vector <EpcX2Sap::CellInformationItem> GetCellInformationList () const;
  /**
   * Set cell information list function
   * \param cellInformationList std::vector <EpcX2Sap::CellInformationItem> 
   */
  void SetCellInformationList (std::vector <EpcX2Sap::CellInformationItem> cellInformationList);

  /**
   * Get length of IEs function
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Get number of IEs function
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< length of IEs

  std::vector <EpcX2Sap::CellInformationItem> m_cellInformationList; ///< cell information list
};


/**
 * EpcX2ResourceStatusUpdateHeader
 */
class EpcX2ResourceStatusUpdateHeader : public Header
{
public:
  EpcX2ResourceStatusUpdateHeader ();
  virtual ~EpcX2ResourceStatusUpdateHeader ();

  /**
   * \brief Get the type ID.
   * \return the object TypeId
   */
  static TypeId GetTypeId (void);
  virtual TypeId GetInstanceTypeId (void) const;
  virtual uint32_t GetSerializedSize (void) const;
  virtual void Serialize (Buffer::Iterator start) const;
  virtual uint32_t Deserialize (Buffer::Iterator start);
  virtual void Print (std::ostream &os) const;


  /**
   * Get ENB1 measurement ID function
   * \returns the ENB1 measurement ID
   */
  uint16_t GetEnb1MeasurementId () const;
  /**
   * Set ENB1 measurement ID function
   * \param enb1MeasurementId the ENB1 measurement ID
   */
  void SetEnb1MeasurementId (uint16_t enb1MeasurementId);

  /**
   * Get ENB2 measurement ID function
   * \returns the ENB2 measurement ID
   */
  uint16_t GetEnb2MeasurementId () const;
  /**
   * Set ENB2 measurement ID function
   * \param enb2MeasurementId ENB2 measruement ID
   */
  void SetEnb2MeasurementId (uint16_t enb2MeasurementId);

  /**
   * Get cell measurement results list function
   * \returns the cell measurement results list
   */ 
  std::vector <EpcX2Sap::CellMeasurementResultItem> GetCellMeasurementResultList () const;
  /**
   * Set cell measurement results list function
   * \param cellMeasurementResultList the cell measurement results list
   */
  void SetCellMeasurementResultList (std::vector <EpcX2Sap::CellMeasurementResultItem> cellMeasurementResultList);

  /**
   * Get length of IEs function
   * \returns the length of IEs
   */
  uint32_t GetLengthOfIes () const;
  /**
   * Get number of IEs function
   * \returns the number of IEs
   */
  uint32_t GetNumberOfIes () const;

private:
  uint32_t          m_numberOfIes; ///< number of IEs
  uint32_t          m_headerLength; ///< header length

  uint16_t          m_enb1MeasurementId; ///< ENB1 measurement
  uint16_t          m_enb2MeasurementId; ///< ENB2 measurement
  std::vector <EpcX2Sap::CellMeasurementResultItem> m_cellMeasurementResultList; ///< cell measurement result list
};


} // namespace ns3

#endif // EPC_X2_HEADER_H