A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
lte-radio-bearer-info.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Nicola Baldo <nbaldo@cttc.es>
7
*/
8
9
#ifndef LTE_RADIO_BEARER_INFO_H
10
#define LTE_RADIO_BEARER_INFO_H
11
12
#include "
eps-bearer.h
"
13
#include "
lte-rrc-sap.h
"
14
15
#include <ns3/ipv4-address.h>
16
#include <ns3/object.h>
17
#include <ns3/pointer.h>
18
19
namespace
ns3
20
{
21
22
class
LteRlc;
23
class
LtePdcp;
24
25
/**
26
* store information on active radio bearer instance
27
*
28
*/
29
class
LteRadioBearerInfo
:
public
Object
30
{
31
public
:
32
LteRadioBearerInfo
();
33
~LteRadioBearerInfo
()
override
;
34
/**
35
* \brief Get the type ID.
36
* \return the object TypeId
37
*/
38
static
TypeId
GetTypeId
();
39
40
Ptr<LteRlc>
m_rlc
;
///< RLC
41
Ptr<LtePdcp>
m_pdcp
;
///< PDCP
42
};
43
44
/**
45
* store information on active signaling radio bearer instance
46
*
47
*/
48
class
LteSignalingRadioBearerInfo
:
public
LteRadioBearerInfo
49
{
50
public
:
51
/**
52
* \brief Get the type ID.
53
* \return the object TypeId
54
*/
55
static
TypeId
GetTypeId
();
56
57
uint8_t
m_srbIdentity
;
///< SRB identity
58
LteRrcSap::LogicalChannelConfig
m_logicalChannelConfig
;
///< logical channel config
59
};
60
61
/**
62
* store information on active data radio bearer instance
63
*
64
*/
65
class
LteDataRadioBearerInfo
:
public
LteRadioBearerInfo
66
{
67
public
:
68
/**
69
* \brief Get the type ID.
70
* \return the object TypeId
71
*/
72
static
TypeId
GetTypeId
();
73
74
EpsBearer
m_epsBearer
;
///< EPS bearer
75
uint8_t
m_epsBearerIdentity
;
///< EPS bearer identity
76
uint8_t
m_drbIdentity
;
///< DRB identity
77
LteRrcSap::RlcConfig
m_rlcConfig
;
///< RLC config
78
uint8_t
m_logicalChannelIdentity
;
///< logical channel identity
79
LteRrcSap::LogicalChannelConfig
m_logicalChannelConfig
;
///< logical channel config
80
uint32_t
m_gtpTeid
;
/**< S1-bearer GTP tunnel endpoint identifier, see 36.423 9.2.1 */
81
Ipv4Address
m_transportLayerAddress
;
/**< IP Address of the SGW, see 36.423 9.2.1 */
82
};
83
84
}
// namespace ns3
85
86
#endif
// LTE_RADIO_BEARER_INFO_H
ns3::EpsBearer
This class contains the specification of EPS Bearers.
Definition
eps-bearer.h:80
ns3::Ipv4Address
Ipv4 addresses are stored in host order in this class.
Definition
ipv4-address.h:31
ns3::LteDataRadioBearerInfo
store information on active data radio bearer instance
Definition
lte-radio-bearer-info.h:66
ns3::LteDataRadioBearerInfo::m_drbIdentity
uint8_t m_drbIdentity
DRB identity.
Definition
lte-radio-bearer-info.h:76
ns3::LteDataRadioBearerInfo::m_logicalChannelIdentity
uint8_t m_logicalChannelIdentity
logical channel identity
Definition
lte-radio-bearer-info.h:78
ns3::LteDataRadioBearerInfo::m_logicalChannelConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
logical channel config
Definition
lte-radio-bearer-info.h:79
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:80
ns3::LteDataRadioBearerInfo::m_rlcConfig
LteRrcSap::RlcConfig m_rlcConfig
RLC config.
Definition
lte-radio-bearer-info.h:77
ns3::LteDataRadioBearerInfo::m_transportLayerAddress
Ipv4Address m_transportLayerAddress
IP Address of the SGW, see 36.423 9.2.1.
Definition
lte-radio-bearer-info.h:81
ns3::LteDataRadioBearerInfo::m_epsBearerIdentity
uint8_t m_epsBearerIdentity
EPS bearer identity.
Definition
lte-radio-bearer-info.h:75
ns3::LteDataRadioBearerInfo::m_epsBearer
EpsBearer m_epsBearer
EPS bearer.
Definition
lte-radio-bearer-info.h:74
ns3::LteDataRadioBearerInfo::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition
lte-radio-bearer-info.cc:38
ns3::LteRadioBearerInfo
store information on active radio bearer instance
Definition
lte-radio-bearer-info.h:30
ns3::LteRadioBearerInfo::m_rlc
Ptr< LteRlc > m_rlc
RLC.
Definition
lte-radio-bearer-info.h:40
ns3::LteRadioBearerInfo::m_pdcp
Ptr< LtePdcp > m_pdcp
PDCP.
Definition
lte-radio-bearer-info.h:41
ns3::LteRadioBearerInfo::~LteRadioBearerInfo
~LteRadioBearerInfo() override
Definition
lte-radio-bearer-info.cc:25
ns3::LteRadioBearerInfo::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition
lte-radio-bearer-info.cc:30
ns3::LteRadioBearerInfo::LteRadioBearerInfo
LteRadioBearerInfo()
Definition
lte-radio-bearer-info.cc:21
ns3::LteSignalingRadioBearerInfo
store information on active signaling radio bearer instance
Definition
lte-radio-bearer-info.h:49
ns3::LteSignalingRadioBearerInfo::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition
lte-radio-bearer-info.cc:76
ns3::LteSignalingRadioBearerInfo::m_logicalChannelConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
logical channel config
Definition
lte-radio-bearer-info.h:58
ns3::LteSignalingRadioBearerInfo::m_srbIdentity
uint8_t m_srbIdentity
SRB identity.
Definition
lte-radio-bearer-info.h:57
ns3::Object
A base class which provides memory management and object aggregation.
Definition
object.h:78
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition
mpi-test-fixtures.h:37
ns3::TypeId
a unique identifier for an interface.
Definition
type-id.h:48
uint32_t
eps-bearer.h
lte-rrc-sap.h
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::LteRrcSap::LogicalChannelConfig
LogicalChannelConfig structure.
Definition
lte-rrc-sap.h:98
ns3::LteRrcSap::RlcConfig
RlcConfig structure.
Definition
lte-rrc-sap.h:83
src
lte
model
lte-radio-bearer-info.h
Generated on Fri Nov 8 2024 13:59:03 for ns-3 by
1.11.0