A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
ie-dot11s-peering-protocol.h
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#ifndef MESH_PEERING_PROTOCOL_H
21#define MESH_PEERING_PROTOCOL_H
22
23#include "ns3/mesh-information-element-vector.h"
24
25namespace ns3
26{
27namespace dot11s
28{
29
30/**
31 * \ingroup dot11s
32 *
33 * \brief Mesh Peering Protocol Identifier information element
34 * Note that it does not permit to set any value besides zero
35 * (corresponding to mesh peering management protocol)
36 */
38{
39 public:
41
42 // Inherited from WifiInformationElement
43 WifiInformationElementId ElementId() const override;
44 uint16_t GetInformationFieldSize() const override;
45 void SerializeInformationField(Buffer::Iterator i) const override;
46 uint16_t DeserializeInformationField(Buffer::Iterator i, uint16_t length) override;
47 void Print(std::ostream& os) const override;
48
49 private:
50 uint8_t m_protocol; ///< the protocol
51};
52} // namespace dot11s
53} // namespace ns3
54#endif
iterator in a Buffer instance
Definition: buffer.h:100
Information element, as defined in 802.11-2007 standard.
Mesh Peering Protocol Identifier information element Note that it does not permit to set any value be...
void SerializeInformationField(Buffer::Iterator i) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
uint16_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
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)
WifiInformationElementId ElementId() const override
Get the wifi information element ID.
void Print(std::ostream &os) const override
Generate human-readable form of IE.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.