A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
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
47
Ptr<LteRlc>
m_rlc
;
48
Ptr<LtePdcp>
m_pdcp
;
49
};
50
51
56
class
LteSignalingRadioBearerInfo
:
public
LteRadioBearerInfo
57
{
58
59
public
:
60
static
TypeId
GetTypeId
(
void
);
61
62
uint8_t
m_srbIdentity
;
63
LteRrcSap::LogicalChannelConfig
m_logicalChannelConfig
;
64
};
65
66
71
class
LteDataRadioBearerInfo
:
public
LteRadioBearerInfo
72
{
73
74
public
:
75
static
TypeId
GetTypeId
(
void
);
76
77
EpsBearer
m_epsBearer
;
78
uint8_t
m_epsBearerIdentity
;
79
uint8_t
m_drbIdentity
;
80
LteRrcSap::RlcConfig
m_rlcConfig
;
81
uint8_t
m_logicalChannelIdentity
;
82
LteRrcSap::LogicalChannelConfig
m_logicalChannelConfig
;
83
uint32_t
m_gtpTeid
;
84
Ipv4Address
m_transportLayerAddress
;
85
};
86
87
88
89
90
91
}
// namespace ns3
92
93
94
#endif // LTE_RADIO_BEARER_INFO_H
ns3::LteRadioBearerInfo::GetTypeId
static TypeId GetTypeId(void)
Definition:
lte-radio-bearer-info.cc:44
ns3::Ptr
smart pointer class similar to boost::intrusive_ptr
Definition:
ptr.h:59
ns3::LteRadioBearerInfo::~LteRadioBearerInfo
virtual ~LteRadioBearerInfo(void)
Definition:
lte-radio-bearer-info.cc:39
ns3::LteRadioBearerInfo::m_rlc
Ptr< LteRlc > m_rlc
Definition:
lte-radio-bearer-info.h:47
ns3::LteRadioBearerInfo::LteRadioBearerInfo
LteRadioBearerInfo(void)
Definition:
lte-radio-bearer-info.cc:35
ns3::LteRadioBearerInfo::m_pdcp
Ptr< LtePdcp > m_pdcp
Definition:
lte-radio-bearer-info.h:48
ns3::LteDataRadioBearerInfo::GetTypeId
static TypeId GetTypeId(void)
Definition:
lte-radio-bearer-info.cc:57
ns3::EpsBearer
This class contains the specification of EPS Bearers.
Definition:
eps-bearer.h:71
ns3::LteDataRadioBearerInfo
store information on active data radio bearer instance
Definition:
lte-radio-bearer-info.h:71
ns3::LteDataRadioBearerInfo::m_logicalChannelIdentity
uint8_t m_logicalChannelIdentity
Definition:
lte-radio-bearer-info.h:81
ns3::LteDataRadioBearerInfo::m_transportLayerAddress
Ipv4Address m_transportLayerAddress
IP Address of the SGW, see 36.423 9.2.1.
Definition:
lte-radio-bearer-info.h:84
ns3::LteSignalingRadioBearerInfo::m_srbIdentity
uint8_t m_srbIdentity
Definition:
lte-radio-bearer-info.h:62
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:83
ns3::LteSignalingRadioBearerInfo::m_logicalChannelConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
Definition:
lte-radio-bearer-info.h:63
ns3::LteSignalingRadioBearerInfo
store information on active signaling radio bearer instance
Definition:
lte-radio-bearer-info.h:56
ns3::LteDataRadioBearerInfo::m_rlcConfig
LteRrcSap::RlcConfig m_rlcConfig
Definition:
lte-radio-bearer-info.h:80
ns3::LteDataRadioBearerInfo::m_logicalChannelConfig
LteRrcSap::LogicalChannelConfig m_logicalChannelConfig
Definition:
lte-radio-bearer-info.h:82
ns3::LteRrcSap::RlcConfig
Definition:
lte-rrc-sap.h:92
ns3::Ipv4Address
Ipv4 addresses are stored in host order in this class.
Definition:
ipv4-address.h:38
ns3::LteDataRadioBearerInfo::m_epsBearer
EpsBearer m_epsBearer
Definition:
lte-radio-bearer-info.h:77
ns3::LteDataRadioBearerInfo::m_drbIdentity
uint8_t m_drbIdentity
Definition:
lte-radio-bearer-info.h:79
ns3::LteRadioBearerInfo
store information on active radio bearer instance
Definition:
lte-radio-bearer-info.h:39
ns3::LteSignalingRadioBearerInfo::GetTypeId
static TypeId GetTypeId(void)
Definition:
lte-radio-bearer-info.cc:93
ns3::Object
a base class which provides memory management and object aggregation
Definition:
object.h:63
ns3::LteRrcSap::LogicalChannelConfig
Definition:
lte-rrc-sap.h:103
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:49
ns3::LteDataRadioBearerInfo::m_epsBearerIdentity
uint8_t m_epsBearerIdentity
Definition:
lte-radio-bearer-info.h:78
src
lte
model
lte-radio-bearer-info.h
Generated on Sat Apr 19 2014 14:07:00 for ns-3 by
1.8.6