A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
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
);
49
static
TypeId
GetTypeId
(
void
);
50
51
Ptr<LteRlc>
m_rlc
;
52
Ptr<LtePdcp>
m_pdcp
;
53
};
54
55
60
class
LteSignalingRadioBearerInfo
:
public
LteRadioBearerInfo
61
{
62
63
public
:
68
static
TypeId
GetTypeId
(
void
);
69
70
uint8_t
m_srbIdentity
;
71
LteRrcSap::LogicalChannelConfig
m_logicalChannelConfig
;
72
};
73
74
79
class
LteDataRadioBearerInfo
:
public
LteRadioBearerInfo
80
{
81
82
public
:
87
static
TypeId
GetTypeId
(
void
);
88
89
EpsBearer
m_epsBearer
;
90
uint8_t
m_epsBearerIdentity
;
91
uint8_t
m_drbIdentity
;
92
LteRrcSap::RlcConfig
m_rlcConfig
;
93
uint8_t
m_logicalChannelIdentity
;
94
LteRrcSap::LogicalChannelConfig
m_logicalChannelConfig
;
95
uint32_t
m_gtpTeid
;
96
Ipv4Address
m_transportLayerAddress
;
97
};
98
99
100
101
102
103
}
// namespace ns3
104
105
106
#endif
// LTE_RADIO_BEARER_INFO_H
ns3::EpsBearer
This class contains the specification of EPS Bearers.
Definition:
eps-bearer.h:92
ns3::Ipv4Address
Ipv4 addresses are stored in host order in this class.
Definition:
ipv4-address.h:41
ns3::LteDataRadioBearerInfo
store information on active data radio bearer instance
Definition:
lte-radio-bearer-info.h:80
ns3::LteDataRadioBearerInfo::m_drbIdentity
uint8_t m_drbIdentity
DRB identity.
Definition:
lte-radio-bearer-info.h:91
ns3::LteDataRadioBearerInfo::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
lte-radio-bearer-info.cc:56
ns3::LteDataRadioBearerInfo::m_logicalChannelIdentity
uint8_t m_logicalChannelIdentity
logical channel identity
Definition:
lte-radio-bearer-info.h:93
ns3::LteDataRadioBearerInfo::m_logicalChannelConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
logical channel config
Definition:
lte-radio-bearer-info.h:94
ns3::LteDataRadioBearerInfo::m_gtpTeid
uint32_t m_gtpTeid
S1-bearer GTP tunnel endpoint identifier, see 36.423 9.2.1.
Definition:
lte-radio-bearer-info.h:95
ns3::LteDataRadioBearerInfo::m_rlcConfig
LteRrcSap::RlcConfig m_rlcConfig
RLC config.
Definition:
lte-radio-bearer-info.h:92
ns3::LteDataRadioBearerInfo::m_transportLayerAddress
Ipv4Address m_transportLayerAddress
IP Address of the SGW, see 36.423 9.2.1.
Definition:
lte-radio-bearer-info.h:96
ns3::LteDataRadioBearerInfo::m_epsBearerIdentity
uint8_t m_epsBearerIdentity
EPS bearer identity.
Definition:
lte-radio-bearer-info.h:90
ns3::LteDataRadioBearerInfo::m_epsBearer
EpsBearer m_epsBearer
EPS bearer.
Definition:
lte-radio-bearer-info.h:89
ns3::LteRadioBearerInfo
store information on active radio bearer instance
Definition:
lte-radio-bearer-info.h:40
ns3::LteRadioBearerInfo::~LteRadioBearerInfo
virtual ~LteRadioBearerInfo(void)
Definition:
lte-radio-bearer-info.cc:38
ns3::LteRadioBearerInfo::m_rlc
Ptr< LteRlc > m_rlc
RLC.
Definition:
lte-radio-bearer-info.h:51
ns3::LteRadioBearerInfo::m_pdcp
Ptr< LtePdcp > m_pdcp
PDCP.
Definition:
lte-radio-bearer-info.h:52
ns3::LteRadioBearerInfo::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
lte-radio-bearer-info.cc:43
ns3::LteRadioBearerInfo::LteRadioBearerInfo
LteRadioBearerInfo(void)
Definition:
lte-radio-bearer-info.cc:34
ns3::LteSignalingRadioBearerInfo
store information on active signaling radio bearer instance
Definition:
lte-radio-bearer-info.h:61
ns3::LteSignalingRadioBearerInfo::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
lte-radio-bearer-info.cc:92
ns3::LteSignalingRadioBearerInfo::m_logicalChannelConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
logical channel config
Definition:
lte-radio-bearer-info.h:71
ns3::LteSignalingRadioBearerInfo::m_srbIdentity
uint8_t m_srbIdentity
SRB indentity.
Definition:
lte-radio-bearer-info.h:70
ns3::Object
A base class which provides memory management and object aggregation.
Definition:
object.h:88
ns3::Ptr< LteRlc >
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::LteRrcSap::LogicalChannelConfig
LogicalChannelConfig structure.
Definition:
lte-rrc-sap.h:109
ns3::LteRrcSap::RlcConfig
RlcConfig structure.
Definition:
lte-rrc-sap.h:96
src
lte
model
lte-radio-bearer-info.h
Generated on Tue Feb 6 2024 19:21:22 for ns-3 by
1.9.1