A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
dsss-parameter-set.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2016 Sébastien Deronne
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: Sébastien Deronne <sebastien.deronne@gmail.com>
19
*/
20
21
#ifndef DSSS_PARAMETER_SET_H
22
#define DSSS_PARAMETER_SET_H
23
24
#include "ns3/wifi-information-element.h"
25
26
namespace
ns3
{
27
34
class
DsssParameterSet
:
public
WifiInformationElement
35
{
36
public
:
37
DsssParameterSet
();
38
39
// Implementations of pure virtual methods of WifiInformationElement
40
WifiInformationElementId
ElementId
()
const override
;
41
uint8_t
GetInformationFieldSize
()
const override
;
42
void
SerializeInformationField
(
Buffer::Iterator
start
)
const override
;
43
uint8_t
DeserializeInformationField
(
Buffer::Iterator
start
, uint8_t length)
override
;
44
/* This information element is a bit special in that it is only
45
included if the STA does support DSSS. To support this we
46
override the Serialize and GetSerializedSize methods of
47
WifiInformationElement. */
48
Buffer::Iterator
Serialize
(
Buffer::Iterator
start
)
const override
;
49
uint16_t
GetSerializedSize
()
const override
;
50
55
void
SetDsssSupported
(uint8_t dsssSupported);
56
62
void
SetCurrentChannel
(uint8_t currentChannel);
63
64
65
private
:
66
uint8_t
m_currentChannel
;
67
69
bool
m_dsssSupported
;
70
};
71
72
}
//namespace ns3
73
74
#endif
/* DSSS_PARAMETER_SET_H */
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:99
ns3::DsssParameterSet
The DSSS Parameter Set.
Definition:
dsss-parameter-set.h:35
ns3::DsssParameterSet::Serialize
Buffer::Iterator Serialize(Buffer::Iterator start) const override
Serialize entire IE including Element ID and length fields.
Definition:
dsss-parameter-set.cc:57
ns3::DsssParameterSet::GetInformationFieldSize
uint8_t GetInformationFieldSize() const override
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
Definition:
dsss-parameter-set.cc:50
ns3::DsssParameterSet::m_currentChannel
uint8_t m_currentChannel
current channel number
Definition:
dsss-parameter-set.h:66
ns3::DsssParameterSet::m_dsssSupported
bool m_dsssSupported
This is used to decide whether this element should be added to the frame or not.
Definition:
dsss-parameter-set.h:69
ns3::DsssParameterSet::SetCurrentChannel
void SetCurrentChannel(uint8_t currentChannel)
Set the Current Channel field in the DsssParameterSet information element.
Definition:
dsss-parameter-set.cc:44
ns3::DsssParameterSet::DsssParameterSet
DsssParameterSet()
Definition:
dsss-parameter-set.cc:25
ns3::DsssParameterSet::DeserializeInformationField
uint8_t DeserializeInformationField(Buffer::Iterator start, uint8_t length) override
Deserialize information (i.e., the body of the IE, not including the Element ID and length octets)
Definition:
dsss-parameter-set.cc:86
ns3::DsssParameterSet::GetSerializedSize
uint16_t GetSerializedSize() const override
Get the size of the serialized IE including Element ID and length fields.
Definition:
dsss-parameter-set.cc:67
ns3::DsssParameterSet::SetDsssSupported
void SetDsssSupported(uint8_t dsssSupported)
Set DSSS supported.
Definition:
dsss-parameter-set.cc:38
ns3::DsssParameterSet::ElementId
WifiInformationElementId ElementId() const override
Definition:
dsss-parameter-set.cc:32
ns3::DsssParameterSet::SerializeInformationField
void SerializeInformationField(Buffer::Iterator start) const override
Serialize information (i.e., the body of the IE, not including the Element ID and length octets)
Definition:
dsss-parameter-set.cc:77
ns3::WifiInformationElement
Information element, as defined in 802.11-2007 standard.
Definition:
wifi-information-element.h:234
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:40
visualizer.core.start
def start()
Definition:
core.py:1853
src
wifi
model
non-ht
dsss-parameter-set.h
Generated on Tue Feb 6 2024 19:21:29 for ns-3 by
1.9.1