Template for the implementation of the LteAsSapProvider as a member of an owner class of type C to which all methods are forwarded. More...
#include "lte-as-sap.h"
Public Member Functions | |
MemberLteAsSapProvider ()=delete | |
MemberLteAsSapProvider (C *owner) | |
Constructor. More... | |
void | Connect () override |
Tell the RRC entity to enter Connected mode. More... | |
void | Disconnect () override |
Tell the RRC entity to release the connection. More... | |
void | ForceCampedOnEnb (uint16_t cellId, uint32_t dlEarfcn) override |
Force the RRC entity to stay camped on a certain eNodeB. More... | |
void | SendData (Ptr< Packet > packet, uint8_t bid) override |
Send a data packet. More... | |
void | SetCsgWhiteList (uint32_t csgId) override |
Set the selected Closed Subscriber Group subscription list to be used for cell selection. More... | |
void | StartCellSelection (uint32_t dlEarfcn) override |
Initiate Idle mode cell selection procedure. More... | |
Public Member Functions inherited from ns3::LteAsSapProvider | |
virtual | ~LteAsSapProvider () |
Private Attributes | |
C * | m_owner |
the owner class More... | |
Template for the implementation of the LteAsSapProvider as a member of an owner class of type C to which all methods are forwarded.
Definition at line 130 of file lte-as-sap.h.
ns3::MemberLteAsSapProvider< C >::MemberLteAsSapProvider | ( | C * | owner | ) |
|
delete |
|
overridevirtual |
Tell the RRC entity to enter Connected mode.
If this function is called when the UE is in a situation where connecting is not possible (e.g. before the simulation begin), then the UE will attempt to connect at the earliest possible time (e.g. after it camps to a suitable cell).
Implements ns3::LteAsSapProvider.
Definition at line 184 of file lte-as-sap.h.
|
overridevirtual |
Tell the RRC entity to release the connection.
Implements ns3::LteAsSapProvider.
Definition at line 198 of file lte-as-sap.h.
|
overridevirtual |
Force the RRC entity to stay camped on a certain eNodeB.
cellId | the cell ID identifying the eNodeB |
dlEarfcn | the downlink carrier frequency (EARFCN) |
Implements ns3::LteAsSapProvider.
Definition at line 177 of file lte-as-sap.h.
|
overridevirtual |
Send a data packet.
packet | the packet |
bid | the EPS bearer ID |
Implements ns3::LteAsSapProvider.
Definition at line 191 of file lte-as-sap.h.
|
overridevirtual |
Set the selected Closed Subscriber Group subscription list to be used for cell selection.
csgId | identity of the subscribed CSG |
Implements ns3::LteAsSapProvider.
Definition at line 163 of file lte-as-sap.h.
|
overridevirtual |
Initiate Idle mode cell selection procedure.
dlEarfcn | the downlink carrier frequency (EARFCN) |
Implements ns3::LteAsSapProvider.
Definition at line 170 of file lte-as-sap.h.
|
private |
the owner class
Definition at line 152 of file lte-as-sap.h.