A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
lte-pdcp-tag.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011 CTTC
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Jaume Nin <jaume.nin@cttc.es>
18 * Nicola Baldo <nbaldo@cttc.es>
19 */
20
21#ifndef PDCP_TAG_H
22#define PDCP_TAG_H
23
24#include "ns3/nstime.h"
25#include "ns3/packet.h"
26
27namespace ns3
28{
29
30class Tag;
31
32/**
33 * Tag to calculate the per-PDU delay from eNb PDCP to UE PDCP
34 */
35
36class PdcpTag : public Tag
37{
38 public:
39 /**
40 * \brief Get the type ID.
41 * \return the object TypeId
42 */
43 static TypeId GetTypeId();
44 TypeId GetInstanceTypeId() const override;
45
46 /**
47 * Create an empty PDCP tag
48 */
49 PdcpTag();
50 /**
51 * Create an PDCP tag with the given senderTimestamp
52 * \param senderTimestamp the time stamp
53 */
54 PdcpTag(Time senderTimestamp);
55
56 void Serialize(TagBuffer i) const override;
57 void Deserialize(TagBuffer i) override;
58 uint32_t GetSerializedSize() const override;
59 void Print(std::ostream& os) const override;
60
61 /**
62 * Get the instant when the PDCP delivers the PDU to the MAC SAP provider
63 * @return the sender timestamp
64 */
66
67 /**
68 * Set the sender timestamp
69 * @param senderTimestamp time stamp of the instant when the PDCP delivers the PDU to the MAC
70 * SAP provider
71 */
72 void SetSenderTimestamp(Time senderTimestamp);
73
74 private:
75 Time m_senderTimestamp; ///< sender timestamp
76};
77
78} // namespace ns3
79
80#endif /* PDCP_TAG_H */
Tag to calculate the per-PDU delay from eNb PDCP to UE PDCP.
Definition: lte-pdcp-tag.h:37
void SetSenderTimestamp(Time senderTimestamp)
Set the sender timestamp.
Definition: lte-pdcp-tag.cc:92
void Serialize(TagBuffer i) const override
Definition: lte-pdcp-tag.cc:65
Time GetSenderTimestamp() const
Get the instant when the PDCP delivers the PDU to the MAC SAP provider.
Definition: lte-pdcp-tag.cc:86
Time m_senderTimestamp
sender timestamp
Definition: lte-pdcp-tag.h:75
void Print(std::ostream &os) const override
Definition: lte-pdcp-tag.cc:80
TypeId GetInstanceTypeId() const override
Get the most derived TypeId for this Object.
Definition: lte-pdcp-tag.cc:53
static TypeId GetTypeId()
Get the type ID.
Definition: lte-pdcp-tag.cc:45
uint32_t GetSerializedSize() const override
Definition: lte-pdcp-tag.cc:59
void Deserialize(TagBuffer i) override
Definition: lte-pdcp-tag.cc:72
PdcpTag()
Create an empty PDCP tag.
Definition: lte-pdcp-tag.cc:31
read and write tag data
Definition: tag-buffer.h:52
tag a set of bytes in a packet
Definition: tag.h:39
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.