A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
lte
model
lte-rlc-tm.h
Go to the documentation of this file.
1
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2011,2012 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: Manuel Requena <manuel.requena@cttc.es>
19
* Nicola Baldo <nbaldo@cttc.es>
20
*/
21
22
#ifndef LTE_RLC_TM_H
23
#define LTE_RLC_TM_H
24
25
#include "ns3/lte-rlc.h"
26
27
#include <ns3/event-id.h>
28
#include <map>
29
30
namespace
ns3
{
31
35
class
LteRlcTm
:
public
LteRlc
36
{
37
public
:
38
LteRlcTm
();
39
virtual
~LteRlcTm
();
44
static
TypeId
GetTypeId
(
void
);
45
virtual
void
DoDispose
();
46
52
virtual
void
DoTransmitPdcpPdu
(
Ptr<Packet>
p);
53
64
virtual
void
DoNotifyTxOpportunity
(uint32_t bytes, uint8_t layer, uint8_t harqId, uint8_t componentCarrierId, uint16_t rnti, uint8_t lcid);
68
virtual
void
DoNotifyHarqDeliveryFailure
();
69
virtual
void
DoReceivePdu
(
Ptr<Packet>
p, uint16_t rnti, uint8_t lcid);
70
71
private
:
73
void
ExpireRbsTimer
(
void
);
75
void
DoReportBufferStatus
();
76
77
private
:
78
uint32_t
m_maxTxBufferSize
;
79
uint32_t
m_txBufferSize
;
80
std::vector < Ptr<Packet> >
m_txBuffer
;
81
82
EventId
m_rbsTimer
;
83
84
};
85
86
87
}
// namespace ns3
88
89
#endif // LTE_RLC_TM_H
ns3::Ptr< Packet >
ns3::LteRlcTm::m_txBufferSize
uint32_t m_txBufferSize
transmit buffer size
Definition:
lte-rlc-tm.h:79
ns3::LteRlcTm::DoNotifyHarqDeliveryFailure
virtual void DoNotifyHarqDeliveryFailure()
Notify HARQ deliver failure.
Definition:
lte-rlc-tm.cc:165
ns3::LteRlcTm::ExpireRbsTimer
void ExpireRbsTimer(void)
Expire RBS timer function.
Definition:
lte-rlc-tm.cc:222
ns3::LteRlcTm::DoReportBufferStatus
void DoReportBufferStatus()
Report buffer status.
Definition:
lte-rlc-tm.cc:193
ns3::LteRlcTm::DoNotifyTxOpportunity
virtual void DoNotifyTxOpportunity(uint32_t bytes, uint8_t layer, uint8_t harqId, uint8_t componentCarrierId, uint16_t rnti, uint8_t lcid)
MAC SAP.
Definition:
lte-rlc-tm.cc:114
ns3::LteRlcTm::LteRlcTm
LteRlcTm()
Definition:
lte-rlc-tm.cc:34
ns3::LteRlcTm::DoTransmitPdcpPdu
virtual void DoTransmitPdcpPdu(Ptr< Packet > p)
RLC SAP.
Definition:
lte-rlc-tm.cc:78
ns3::LteRlcTm::~LteRlcTm
virtual ~LteRlcTm()
Definition:
lte-rlc-tm.cc:41
ns3::LteRlcTm::DoReceivePdu
virtual void DoReceivePdu(Ptr< Packet > p, uint16_t rnti, uint8_t lcid)
Receive PDU function.
Definition:
lte-rlc-tm.cc:171
ns3::LteRlcTm
LTE RLC Transparent Mode (TM), see 3GPP TS 36.322.
Definition:
lte-rlc-tm.h:35
ns3::LteRlcTm::m_rbsTimer
EventId m_rbsTimer
RBS timer.
Definition:
lte-rlc-tm.h:82
ns3::LteRlcTm::m_txBuffer
std::vector< Ptr< Packet > > m_txBuffer
Transmission buffer.
Definition:
lte-rlc-tm.h:80
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::LteRlcTm::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
lte-rlc-tm.cc:47
ns3::EventId
An identifier for simulation events.
Definition:
event-id.h:53
ns3::LteRlcTm::m_maxTxBufferSize
uint32_t m_maxTxBufferSize
maximum transmit buffer size
Definition:
lte-rlc-tm.h:78
ns3::LteRlcTm::DoDispose
virtual void DoDispose()
Destructor implementation.
Definition:
lte-rlc-tm.cc:63
ns3::LteRlc
This abstract base class defines the API to interact with the Radio Link Control (LTE_RLC) in LTE...
Definition:
lte-rlc.h:50
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
Generated on Wed Nov 7 2018 10:02:01 for ns-3 by
1.8.14