A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
ie-dot11s-rann.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2008,2009 IITP RAS
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: Kirill Andreev <andreev@iitp.ru>
19
*/
20
21
#ifndef RANN_INFORMATION_ELEMENT_H
22
#define RANN_INFORMATION_ELEMENT_H
23
24
#include "ns3/mac48-address.h"
25
#include "ns3/mesh-information-element-vector.h"
26
27
namespace
ns3
{
28
namespace
dot11s {
33
class
IeRann
:
public
WifiInformationElement
34
{
35
public
:
36
IeRann
();
37
virtual
~IeRann
();
38
void
SetFlags
(uint8_t flags);
39
void
SetHopcount
(uint8_t hopcount);
40
void
SetTTL
(uint8_t ttl);
41
void
SetOriginatorAddress
(
Mac48Address
originator_address);
42
void
SetDestSeqNumber
(uint32_t dest_seq_number);
43
void
SetMetric
(uint32_t metric);
44
uint8_t
GetFlags
();
45
uint8_t
GetHopcount
();
46
uint8_t
GetTtl
();
47
Mac48Address
GetOriginatorAddress
();
48
uint32_t
GetDestSeqNumber
();
49
uint32_t
GetMetric
();
50
void
DecrementTtl
();
51
void
IncrementMetric
(uint32_t metric);
52
53
// Inherited from WifiInformationElement
54
virtual
WifiInformationElementId
ElementId
()
const
;
55
virtual
void
SerializeInformationField
(
Buffer::Iterator
i)
const
;
56
virtual
uint8_t
DeserializeInformationField
(
Buffer::Iterator
start
, uint8_t length);
57
virtual
uint8_t
GetInformationFieldSize
()
const
;
58
virtual
void
Print
(std::ostream &os)
const
;
59
60
private
:
61
uint8_t
m_flags
;
62
uint8_t
m_hopcount
;
63
uint8_t
m_ttl
;
64
Mac48Address
m_originatorAddress
;
65
uint32_t
m_destSeqNumber
;
66
uint32_t
m_metric
;
67
68
friend
bool
operator==
(
const
IeRann
& a,
const
IeRann
& b);
69
};
70
71
bool
operator==
(
const
IeRann
& a,
const
IeRann
& b);
72
std::ostream &
operator <<
(std::ostream &os,
const
IeRann
&rann);
73
}
// namespace dot11s
74
}
// namespace ns3
75
76
#endif
ns3::dot11s::IeRann::m_originatorAddress
Mac48Address m_originatorAddress
Definition:
ie-dot11s-rann.h:64
ns3::dot11s::IeRann::IncrementMetric
void IncrementMetric(uint32_t metric)
Definition:
ie-dot11s-rann.cc:107
ns3::dot11s::IeRann::GetInformationFieldSize
virtual uint8_t GetInformationFieldSize() const
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
Definition:
ie-dot11s-rann.cc:140
ns3::dot11s::IeRann::operator==
friend bool operator==(const IeRann &a, const IeRann &b)
Definition:
ie-dot11s-rann.cc:164
ns3::dot11s::IeRann::IeRann
IeRann()
Definition:
ie-dot11s-rann.cc:32
ns3::dot11s::IeRann::SetOriginatorAddress
void SetOriginatorAddress(Mac48Address originator_address)
Definition:
ie-dot11s-rann.cc:69
ns3::dot11s::IeRann::GetTtl
uint8_t GetTtl()
Definition:
ie-dot11s-rann.cc:85
ns3::dot11s::IeRann::GetFlags
uint8_t GetFlags()
Definition:
ie-dot11s-rann.cc:75
ns3::dot11s::IeRann::SetDestSeqNumber
void SetDestSeqNumber(uint32_t dest_seq_number)
Definition:
ie-dot11s-rann.cc:59
ns3::dot11s::IeRann::SetFlags
void SetFlags(uint8_t flags)
Definition:
ie-dot11s-rann.cc:44
visualizer.core.start
def start()
Definition:
core.py:1482
ns3::dot11s::IeRann::~IeRann
virtual ~IeRann()
Definition:
ie-dot11s-rann.cc:29
ns3::dot11s::IeRann::m_flags
uint8_t m_flags
Definition:
ie-dot11s-rann.h:61
ns3::dot11s::IeRann::ElementId
virtual WifiInformationElementId ElementId() const
Own unique Element ID.
Definition:
ie-dot11s-rann.cc:38
ns3::dot11s::operator==
bool operator==(const MeshHeader &a, const MeshHeader &b)
Definition:
dot11s-mac-header.cc:172
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:98
ns3::dot11s::IeRann::GetHopcount
uint8_t GetHopcount()
Definition:
ie-dot11s-rann.cc:80
ns3::WifiInformationElement
Information element, as defined in 802.11-2007 standardThe IEEE 802.11 standard includes the notion o...
Definition:
wifi-information-element.h:160
ns3::dot11s::IeRann
See 7.3.2.95 of 802.11s draft 2.07.
Definition:
ie-dot11s-rann.h:33
ns3::dot11s::IeRann::Print
virtual void Print(std::ostream &os) const
Generate human-readable form of IE.
Definition:
ie-dot11s-rann.cc:152
ns3::dot11s::IeRann::m_metric
uint32_t m_metric
Definition:
ie-dot11s-rann.h:66
ns3::dot11s::IeRann::GetMetric
uint32_t GetMetric()
Definition:
ie-dot11s-rann.cc:95
ns3::dot11s::IeRann::DecrementTtl
void DecrementTtl()
Definition:
ie-dot11s-rann.cc:100
ns3::dot11s::IeRann::GetOriginatorAddress
Mac48Address GetOriginatorAddress()
Definition:
ie-dot11s-rann.cc:113
ns3::dot11s::IeRann::m_ttl
uint8_t m_ttl
Definition:
ie-dot11s-rann.h:63
ns3::dot11s::IeRann::SetTTL
void SetTTL(uint8_t ttl)
Definition:
ie-dot11s-rann.cc:54
ns3::dot11s::IeRann::SetHopcount
void SetHopcount(uint8_t hopcount)
Definition:
ie-dot11s-rann.cc:49
ns3::dot11s::IeRann::m_destSeqNumber
uint32_t m_destSeqNumber
Definition:
ie-dot11s-rann.h:65
ns3::dot11s::IeRann::m_hopcount
uint8_t m_hopcount
Definition:
ie-dot11s-rann.h:62
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::Mac48Address
an EUI-48 address
Definition:
mac48-address.h:43
ns3::dot11s::IeRann::DeserializeInformationField
virtual uint8_t DeserializeInformationField(Buffer::Iterator start, uint8_t length)
Deserialize information (i.e., the body of the IE, not including the Element ID and length octets) ...
Definition:
ie-dot11s-rann.cc:128
ns3::dot11s::IeRann::SetMetric
void SetMetric(uint32_t metric)
Definition:
ie-dot11s-rann.cc:64
ns3::dot11s::IeRann::GetDestSeqNumber
uint32_t GetDestSeqNumber()
Definition:
ie-dot11s-rann.cc:90
ns3::WifiInformationElementId
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
Definition:
wifi-information-element.h:41
ns3::dot11s::IeRann::SerializeInformationField
virtual void SerializeInformationField(Buffer::Iterator i) const
Serialize information (i.e., the body of the IE, not including the Element ID and length octets) ...
Definition:
ie-dot11s-rann.cc:118
ns3::dot11s::operator<<
std::ostream & operator<<(std::ostream &os, const IeBeaconTiming &a)
Definition:
ie-dot11s-beacon-timing.cc:215
src
mesh
model
dot11s
ie-dot11s-rann.h
Generated on Wed Sep 30 2015 15:55:43 for ns-3 by
1.8.9.1