A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
ie-dot11s-peering-protocol.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2008,2009 IITP RAS
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
* Authors: Kirill Andreev <andreev@iitp.ru>
18
*/
19
20
#include "
ie-dot11s-peering-protocol.h
"
21
22
namespace
ns3
23
{
24
namespace
dot11s
25
{
26
uint16_t
27
IePeeringProtocol::GetInformationFieldSize
()
const
28
{
29
return
1;
30
}
31
32
IePeeringProtocol::IePeeringProtocol
()
33
: m_protocol(0)
34
{
35
}
36
37
WifiInformationElementId
38
IePeeringProtocol::ElementId
()
const
39
{
40
return
IE11S_MESH_PEERING_PROTOCOL_VERSION
;
41
}
42
43
void
44
IePeeringProtocol::SerializeInformationField
(
Buffer::Iterator
i)
const
45
{
46
i.
WriteU8
(
m_protocol
);
47
}
48
49
uint16_t
50
IePeeringProtocol::DeserializeInformationField
(
Buffer::Iterator
i, uint16_t length)
51
{
52
Buffer::Iterator
start
= i;
53
m_protocol
= i.
ReadU8
();
54
return
i.
GetDistanceFrom
(
start
);
55
}
56
57
void
58
IePeeringProtocol::Print
(std::ostream& os)
const
59
{
60
os <<
"PeeringProtocol=(peering protocol="
<<
m_protocol
<<
")"
;
61
}
62
63
std::ostream&
64
operator<<
(std::ostream& os,
const
IePeeringProtocol
& a)
65
{
66
a.
Print
(os);
67
return
os;
68
}
69
}
// namespace dot11s
70
}
// namespace ns3
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:100
ns3::Buffer::Iterator::ReadU8
uint8_t ReadU8()
Definition:
buffer.h:1027
ns3::Buffer::Iterator::WriteU8
void WriteU8(uint8_t data)
Definition:
buffer.h:881
ns3::Buffer::Iterator::GetDistanceFrom
uint32_t GetDistanceFrom(const Iterator &o) const
Definition:
buffer.cc:780
ns3::dot11s::IePeeringProtocol
Mesh Peering Protocol Identifier information element Note that it does not permit to set any value be...
Definition:
ie-dot11s-peering-protocol.h:38
ns3::dot11s::IePeeringProtocol::IePeeringProtocol
IePeeringProtocol()
Definition:
ie-dot11s-peering-protocol.cc:32
ns3::dot11s::IePeeringProtocol::SerializeInformationField
void SerializeInformationField(Buffer::Iterator i) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
Definition:
ie-dot11s-peering-protocol.cc:44
ns3::dot11s::IePeeringProtocol::GetInformationFieldSize
uint16_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
Definition:
ie-dot11s-peering-protocol.cc:27
ns3::dot11s::IePeeringProtocol::DeserializeInformationField
uint16_t DeserializeInformationField(Buffer::Iterator i, uint16_t length) override
Deserialize information (i.e., the body of the IE, not including the Element ID and length octets)
Definition:
ie-dot11s-peering-protocol.cc:50
ns3::dot11s::IePeeringProtocol::ElementId
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
Definition:
ie-dot11s-peering-protocol.cc:38
ns3::dot11s::IePeeringProtocol::Print
void Print(std::ostream &os) const override
Generate human-readable form of IE.
Definition:
ie-dot11s-peering-protocol.cc:58
ns3::dot11s::IePeeringProtocol::m_protocol
uint8_t m_protocol
the protocol
Definition:
ie-dot11s-peering-protocol.h:50
ie-dot11s-peering-protocol.h
IE11S_MESH_PEERING_PROTOCOL_VERSION
#define IE11S_MESH_PEERING_PROTOCOL_VERSION
Definition:
mesh-information-element-vector.h:29
ns3::dot11s::operator<<
std::ostream & operator<<(std::ostream &os, const IeBeaconTiming &a)
Definition:
ie-dot11s-beacon-timing.cc:242
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::WifiInformationElementId
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
Definition:
wifi-information-element.h:45
two-ray-to-three-gpp-ch-calibration.start
start
Definition:
two-ray-to-three-gpp-ch-calibration.py:520
src
mesh
model
dot11s
ie-dot11s-peering-protocol.cc
Generated on Sun Mar 3 2024 17:11:04 for ns-3 by
1.9.1