A Discrete-Event Network Simulator
API
lte-radio-bearer-info.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (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, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  */
20 
21 #ifndef LTE_RADIO_BEARER_INFO_H
22 #define LTE_RADIO_BEARER_INFO_H
23 
24 #include <ns3/object.h>
25 #include <ns3/pointer.h>
26 #include <ns3/eps-bearer.h>
27 #include <ns3/lte-rrc-sap.h>
28 #include <ns3/ipv4-address.h>
29 
30 namespace ns3 {
31 
32 class LteRlc;
33 class LtePdcp;
34 
39 class LteRadioBearerInfo : public Object
40 {
41 
42 public:
43  LteRadioBearerInfo (void);
44  virtual ~LteRadioBearerInfo (void);
45  static TypeId GetTypeId (void);
46 
49 };
50 
51 
57 {
58 
59 public:
60  static TypeId GetTypeId (void);
61 
62  uint8_t m_srbIdentity;
64 };
65 
66 
72 {
73 
74 public:
75  static TypeId GetTypeId (void);
76 
79  uint8_t m_drbIdentity;
83  uint32_t m_gtpTeid;
85 };
86 
87 
88 
89 
90 
91 } // namespace ns3
92 
93 
94 #endif // LTE_RADIO_BEARER_INFO_H
static TypeId GetTypeId(void)
This class contains the specification of EPS Bearers.
Definition: eps-bearer.h:71
store information on active data radio bearer instance
Ipv4Address m_transportLayerAddress
IP Address of the SGW, see 36.423 9.2.1.
uint32_t m_gtpTeid
S1-bearer GTP tunnel endpoint identifier, see 36.423 9.2.1.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
store information on active signaling radio bearer instance
LteRrcSap::RlcConfig m_rlcConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:40
store information on active radio bearer instance
A base class which provides memory management and object aggregation.
Definition: object.h:87
a unique identifier for an interface.
Definition: type-id.h:58