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
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
dsr-option-header.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2011 Yufei Cheng
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: Yufei Cheng <yfcheng@ittc.ku.edu>
19
*
20
* James P.G. Sterbenz <jpgs@ittc.ku.edu>, director
21
* ResiliNets Research Group http://wiki.ittc.ku.edu/resilinets
22
* Information and Telecommunication Technology Center (ITTC)
23
* and Department of Electrical Engineering and Computer Science
24
* The University of Kansas Lawrence, KS USA.
25
*
26
* Work supported in part by NSF FIND (Future Internet Design) Program
27
* under grant CNS-0626918 (Postmodern Internet Architecture),
28
* NSF grant CNS-1050226 (Multilayer Network Resilience Analysis and Experimentation on GENI),
29
* US Department of Defense (DoD), and ITTC at The University of Kansas.
30
*/
31
32
#ifndef DSR_OPTION_HEADER_H
33
#define DSR_OPTION_HEADER_H
34
35
#include <ostream>
36
#include <algorithm>
37
38
#include "ns3/header.h"
39
#include "ns3/ipv4-address.h"
40
#include "ns3/simulator.h"
41
42
namespace
ns3 {
43
44
class
Time;
45
namespace
dsr {
50
class
DsrOptionHeader
:
public
Header
51
{
52
public
:
57
struct
Alignment
58
{
59
uint8_t
factor
;
60
uint8_t
offset
;
61
};
66
static
TypeId
GetTypeId
();
71
virtual
TypeId
GetInstanceTypeId
()
const
;
75
DsrOptionHeader
();
79
virtual
~DsrOptionHeader
();
84
void
SetType
(uint8_t type);
89
uint8_t
GetType
()
const
;
94
void
SetLength
(uint8_t length);
99
uint8_t
GetLength
()
const
;
105
virtual
void
Print
(std::ostream &os)
const
;
110
virtual
uint32_t
GetSerializedSize
()
const
;
115
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
121
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start
);
129
virtual
Alignment
GetAlignment
()
const
;
130
131
private
:
135
uint8_t
m_type
;
139
uint8_t
m_length
;
143
Buffer
m_data
;
144
};
145
150
class
DsrOptionPad1Header
:
public
DsrOptionHeader
151
{
152
public
:
157
static
TypeId
GetTypeId
();
162
virtual
TypeId
GetInstanceTypeId
()
const
;
166
DsrOptionPad1Header
();
170
virtual
~DsrOptionPad1Header
();
176
virtual
void
Print
(std::ostream &os)
const
;
181
virtual
uint32_t
GetSerializedSize
()
const
;
186
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
192
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
193
};
194
199
class
DsrOptionPadnHeader
:
public
DsrOptionHeader
200
{
201
public
:
206
static
TypeId
GetTypeId
();
211
virtual
TypeId
GetInstanceTypeId
()
const
;
216
DsrOptionPadnHeader
(uint32_t pad = 2);
220
virtual
~DsrOptionPadnHeader
();
226
virtual
void
Print
(std::ostream &os)
const
;
231
virtual
uint32_t
GetSerializedSize
()
const
;
236
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
242
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
243
};
244
272
class
DsrOptionRreqHeader
:
public
DsrOptionHeader
273
{
274
public
:
279
static
TypeId
GetTypeId
();
284
virtual
TypeId
GetInstanceTypeId
()
const
;
288
DsrOptionRreqHeader
();
292
virtual
~DsrOptionRreqHeader
();
297
void
SetNumberAddress
(uint8_t n);
302
Ipv4Address
GetTarget
();
307
void
SetTarget
(
Ipv4Address
target);
312
void
SetNodesAddress
(std::vector<Ipv4Address> ipv4Address);
317
std::vector<Ipv4Address>
GetNodesAddresses
()
const
;
322
uint32_t
GetNodesNumber
()
const
;
327
void
AddNodeAddress
(
Ipv4Address
ipv4);
333
void
SetNodeAddress
(uint8_t index,
Ipv4Address
addr);
339
Ipv4Address
GetNodeAddress
(uint8_t index)
const
;
344
void
SetId
(uint16_t identification);
349
uint16_t
GetId
()
const
;
355
virtual
void
Print
(std::ostream &os)
const
;
360
virtual
uint32_t
GetSerializedSize
()
const
;
365
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
371
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
376
virtual
Alignment
GetAlignment
()
const
;
377
378
private
:
382
uint16_t
m_identification
;
383
/*
384
* Ipv4 address of target node
385
*/
386
Ipv4Address
m_target
;
387
/*
388
* Ipv4 address to write when desearizing the packet
389
*/
390
Ipv4Address
m_address
;
394
typedef
std::vector<Ipv4Address>
VectorIpv4Address_t
;
398
VectorIpv4Address_t
m_ipv4Address
;
399
};
400
426
// The Route Reply header modified for ns-3 implementation
448
class
DsrOptionRrepHeader
:
public
DsrOptionHeader
449
{
450
public
:
455
static
TypeId
GetTypeId
();
460
virtual
TypeId
GetInstanceTypeId
()
const
;
464
DsrOptionRrepHeader
();
468
virtual
~DsrOptionRrepHeader
();
473
void
SetNumberAddress
(uint8_t n);
478
void
SetNodesAddress
(std::vector<Ipv4Address> ipv4Address);
483
std::vector<Ipv4Address>
GetNodesAddress
()
const
;
484
/*
485
* \brief Get the target node Ip address
486
* \return the target address
487
*/
488
Ipv4Address
GetTargetAddress
(std::vector<Ipv4Address> ipv4Address)
const
;
494
void
SetNodeAddress
(uint8_t index,
Ipv4Address
addr);
500
Ipv4Address
GetNodeAddress
(uint8_t index)
const
;
506
virtual
void
Print
(std::ostream &os)
const
;
511
virtual
uint32_t
GetSerializedSize
()
const
;
516
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
522
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
527
virtual
Alignment
GetAlignment
()
const
;
528
529
private
:
530
/*
531
* The Ip address to write to when deserialize the packet
532
*/
533
Ipv4Address
m_address
;
537
typedef
std::vector<Ipv4Address>
VectorIpv4Address_t
;
541
VectorIpv4Address_t
m_ipv4Address
;
542
};
543
569
class
DsrOptionSRHeader
:
public
DsrOptionHeader
570
{
571
public
:
576
static
TypeId
GetTypeId
();
581
virtual
TypeId
GetInstanceTypeId
()
const
;
585
DsrOptionSRHeader
();
589
virtual
~DsrOptionSRHeader
();
590
/*
591
* \brief Set the number of segments left to send
592
* \param The segments left
593
*/
594
void
SetSegmentsLeft
(uint8_t segmentsLeft);
595
/*
596
* \brief Get the number of segments left to send
597
* \return The segments left
598
*/
599
uint8_t
GetSegmentsLeft
()
const
;
604
void
SetNumberAddress
(uint8_t n);
609
void
SetNodesAddress
(std::vector<Ipv4Address> ipv4Address);
614
std::vector<Ipv4Address>
GetNodesAddress
()
const
;
615
/*
616
* \brief Get the node list size which is the number of ip address of the route
617
* \return the node list size
618
*/
619
uint8_t
GetNodeListSize
()
const
;
625
void
SetNodeAddress
(uint8_t index,
Ipv4Address
addr);
631
Ipv4Address
GetNodeAddress
(uint8_t index)
const
;
632
/*
633
* \brief Set the salvage value for a packet
634
* \param The salvage value of the packet
635
*/
636
void
SetSalvage
(uint8_t salvage);
637
/*
638
* \brief Get the salvage value for a packet
639
* \return The salvage value of the packet
640
*/
641
uint8_t
GetSalvage
()
const
;
647
virtual
void
Print
(std::ostream &os)
const
;
652
virtual
uint32_t
GetSerializedSize
()
const
;
657
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
663
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
668
virtual
Alignment
GetAlignment
()
const
;
669
670
private
:
674
Ipv4Address
m_address
;
678
uint8_t
m_segmentsLeft
;
682
uint8_t
m_salvage
;
686
typedef
std::vector<Ipv4Address>
VectorIpv4Address_t
;
690
VectorIpv4Address_t
m_ipv4Address
;
691
};
692
718
// / Error type
719
enum
ErrorType
720
{
721
NODE_UNREACHABLE
= 1,
// !< NODE_UNREACHABLE
722
FLOW_STATE_NOT_SUPPORTED
= 2,
// !< FLOW_STATE_NOT_SUPPORTED
723
OPTION_NOT_SUPPORTED
= 3,
// !< OPTION_NOT_SUPPORTED
724
};
725
726
class
DsrOptionRerrHeader
:
public
DsrOptionHeader
727
{
728
public
:
733
static
TypeId
GetTypeId
();
738
virtual
TypeId
GetInstanceTypeId
()
const
;
742
DsrOptionRerrHeader
();
746
virtual
~DsrOptionRerrHeader
();
751
void
SetErrorType
(uint8_t errorType);
756
uint8_t
GetErrorType
()
const
;
761
virtual
void
SetErrorSrc
(
Ipv4Address
errorSrcAddress);
766
virtual
Ipv4Address
GetErrorSrc
()
const
;
770
virtual
void
SetSalvage
(uint8_t salvage);
775
virtual
uint8_t
GetSalvage
()
const
;
780
virtual
void
SetErrorDst
(
Ipv4Address
errorDstAddress);
785
virtual
Ipv4Address
GetErrorDst
()
const
;
791
virtual
void
Print
(std::ostream &os)
const
;
796
virtual
uint32_t
GetSerializedSize
()
const
;
801
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
807
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
812
virtual
Alignment
GetAlignment
()
const
;
813
814
private
:
818
uint8_t
m_errorType
;
822
uint8_t
m_salvage
;
826
uint16_t
m_errorLength
;
830
Ipv4Address
m_errorSrcAddress
;
834
Ipv4Address
m_errorDstAddress
;
838
Buffer
m_errorData
;
839
};
840
860
/*
861
* \brief The type-specific info field
862
* \verbatim
863
| 0 | 1 | 2 | 3 |
864
0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7
865
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
866
| Unreachable Node Address |
867
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
868
\endverbatim
869
*/
870
871
class
DsrOptionRerrUnreachHeader
:
public
DsrOptionRerrHeader
872
{
873
public
:
878
static
TypeId
GetTypeId
();
883
virtual
TypeId
GetInstanceTypeId
()
const
;
887
DsrOptionRerrUnreachHeader
();
891
virtual
~DsrOptionRerrUnreachHeader
();
896
virtual
void
SetErrorSrc
(
Ipv4Address
errorSrcAddress);
901
virtual
Ipv4Address
GetErrorSrc
()
const
;
905
virtual
void
SetSalvage
(uint8_t salvage);
910
virtual
uint8_t
GetSalvage
()
const
;
915
virtual
void
SetErrorDst
(
Ipv4Address
errorDstAddress);
920
virtual
Ipv4Address
GetErrorDst
()
const
;
925
void
SetUnreachNode
(
Ipv4Address
unreachNode);
930
Ipv4Address
GetUnreachNode
()
const
;
935
void
SetOriginalDst
(
Ipv4Address
originalDst);
940
Ipv4Address
GetOriginalDst
()
const
;
946
virtual
void
Print
(std::ostream &os)
const
;
951
virtual
uint32_t
GetSerializedSize
()
const
;
956
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
962
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
967
virtual
Alignment
GetAlignment
()
const
;
968
969
private
:
973
uint8_t
m_errorType
;
977
uint8_t
m_salvage
;
981
Ipv4Address
m_errorSrcAddress
;
985
Ipv4Address
m_errorDstAddress
;
989
Ipv4Address
m_unreachNode
;
993
Ipv4Address
m_originalDst
;
994
};
995
1015
/*
1016
* \brief The type-specific info field
1017
* \unsupported option
1018
* \verbatim
1019
| 0 |
1020
0 1 2 3 4 5 6 7
1021
+-+-+-+-+-+-+-+-+
1022
|Unsupported Opt|
1023
+-+-+-+-+-+-+-+-+
1024
\endverbatim
1025
*/
1026
1027
class
DsrOptionRerrUnsupportHeader
:
public
DsrOptionRerrHeader
1028
{
1029
public
:
1034
static
TypeId
GetTypeId
();
1039
virtual
TypeId
GetInstanceTypeId
()
const
;
1043
DsrOptionRerrUnsupportHeader
();
1047
virtual
~DsrOptionRerrUnsupportHeader
();
1052
virtual
void
SetErrorSrc
(
Ipv4Address
errorSrcAddress);
1057
virtual
Ipv4Address
GetErrorSrc
()
const
;
1061
virtual
void
SetSalvage
(uint8_t salvage);
1066
virtual
uint8_t
GetSalvage
()
const
;
1071
virtual
void
SetErrorDst
(
Ipv4Address
errorDstAddress);
1076
virtual
Ipv4Address
GetErrorDst
()
const
;
1081
void
SetUnsupported
(uint16_t optionType);
1086
uint16_t
GetUnsupported
()
const
;
1092
virtual
void
Print
(std::ostream &os)
const
;
1097
virtual
uint32_t
GetSerializedSize
()
const
;
1102
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
1108
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
1113
virtual
Alignment
GetAlignment
()
const
;
1114
1115
private
:
1119
uint8_t
m_errorType
;
1123
uint8_t
m_salvage
;
1127
Ipv4Address
m_errorSrcAddress
;
1131
Ipv4Address
m_errorDstAddress
;
1135
uint16_t
m_unsupport
;
1136
};
1137
1155
class
DsrOptionAckReqHeader
:
public
DsrOptionHeader
1156
{
1157
public
:
1162
static
TypeId
GetTypeId
();
1167
virtual
TypeId
GetInstanceTypeId
()
const
;
1171
DsrOptionAckReqHeader
();
1175
virtual
~DsrOptionAckReqHeader
();
1180
void
SetAckId
(uint16_t identification);
1185
uint16_t
GetAckId
()
const
;
1191
virtual
void
Print
(std::ostream &os)
const
;
1196
virtual
uint32_t
GetSerializedSize
()
const
;
1201
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
1207
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
1212
virtual
Alignment
GetAlignment
()
const
;
1213
1214
private
:
1215
/*
1216
* The identification field
1217
*/
1218
uint16_t
m_identification
;
1219
};
1220
1242
class
DsrOptionAckHeader
:
public
DsrOptionHeader
1243
{
1244
public
:
1249
static
TypeId
GetTypeId
();
1254
virtual
TypeId
GetInstanceTypeId
()
const
;
1258
DsrOptionAckHeader
();
1262
virtual
~DsrOptionAckHeader
();
1267
void
SetAckId
(uint16_t identification);
1272
uint16_t
GetAckId
()
const
;
1277
void
SetRealSrc
(
Ipv4Address
realSrcAddress);
1282
Ipv4Address
GetRealSrc
()
const
;
1287
void
SetRealDst
(
Ipv4Address
realDstAddress);
1292
Ipv4Address
GetRealDst
()
const
;
1298
virtual
void
Print
(std::ostream &os)
const
;
1303
virtual
uint32_t
GetSerializedSize
()
const
;
1308
virtual
void
Serialize
(
Buffer::Iterator
start
)
const
;
1314
virtual
uint32_t
Deserialize
(
Buffer::Iterator
start);
1319
virtual
Alignment
GetAlignment
()
const
;
1320
1321
private
:
1325
uint16_t
m_identification
;
1329
Ipv4Address
m_realSrcAddress
;
1333
Ipv4Address
m_realDstAddress
;
1334
};
1335
1336
static
inline
std::ostream &
operator<<
(std::ostream& os,
const
DsrOptionSRHeader
& sr)
1337
{
1338
sr.
Print
(os);
1339
return
os;
1340
}
1341
1342
}
// namespace dsr
1343
}
// namespace ns3
1344
1345
#endif
/* DSR_OPTION_HEADER_H */
ns3::dsr::DsrOptionRrepHeader::DsrOptionRrepHeader
DsrOptionRrepHeader()
Constructor.
Definition:
dsr-option-header.cc:407
ns3::Header
Protocol header serialization and deserialization.
Definition:
header.h:42
ns3::dsr::DsrOptionAckHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:1160
ns3::dsr::DsrOptionRerrUnsupportHeader::m_errorType
uint8_t m_errorType
The error type or route error option.
Definition:
dsr-option-header.h:1119
ns3::dsr::DsrOptionRreqHeader::AddNodeAddress
void AddNodeAddress(Ipv4Address ipv4)
Add one node address.
Definition:
dsr-option-header.cc:287
ns3::dsr::DsrOptionAckHeader::GetAckId
uint16_t GetAckId() const
Set the Ack id number.
Definition:
dsr-option-header.cc:1135
ns3::dsr::DsrOptionRerrUnsupportHeader::SetErrorSrc
virtual void SetErrorSrc(Ipv4Address errorSrcAddress)
Set the route error source address.
Definition:
dsr-option-header.cc:949
ns3::dsr::DsrOptionHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:91
ns3::dsr::DsrOptionRreqHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:329
ns3::dsr::DsrOptionRerrHeader::GetErrorDst
virtual Ipv4Address GetErrorDst() const
Get the error destination ip address.
Definition:
dsr-option-header.cc:724
ns3::dsr::DsrOptionRerrUnsupportHeader::m_unsupport
uint16_t m_unsupport
The unsupported option.
Definition:
dsr-option-header.h:1135
ns3::dsr::DsrOptionSRHeader::DsrOptionSRHeader
DsrOptionSRHeader()
Constructor.
Definition:
dsr-option-header.cc:528
ns3::dsr::DsrOptionAckReqHeader::SetAckId
void SetAckId(uint16_t identification)
Set the Ack request id number.
Definition:
dsr-option-header.cc:1056
ns3::dsr::DsrOptionSRHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:609
ns3::dsr::DsrOptionRerrUnreachHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:874
ns3::dsr::DsrOptionRreqHeader::GetNodeAddress
Ipv4Address GetNodeAddress(uint8_t index) const
Get a Node IPv4 Address.
Definition:
dsr-option-header.cc:314
ns3::dsr::DsrOptionPadnHeader::DsrOptionPadnHeader
DsrOptionPadnHeader(uint32_t pad=2)
Constructor.
Definition:
dsr-option-header.cc:200
ns3::dsr::DsrOptionPadnHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:221
ns3::dsr::DsrOptionRreqHeader::GetTarget
Ipv4Address GetTarget()
Get the target ipv4 address.
Definition:
dsr-option-header.cc:277
ns3::dsr::DsrOptionSRHeader::GetNodeAddress
Ipv4Address GetNodeAddress(uint8_t index) const
Get a Node IPv4 Address.
Definition:
dsr-option-header.cc:582
ns3::dsr::DsrOptionPad1Header::DsrOptionPad1Header
DsrOptionPad1Header()
Constructor.
Definition:
dsr-option-header.cc:149
ns3::dsr::DsrOptionRerrUnreachHeader::GetErrorSrc
virtual Ipv4Address GetErrorSrc() const
Get the route error source address.
Definition:
dsr-option-header.cc:826
ns3::dsr::DsrOptionAckReqHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:1077
ns3::dsr::DsrOptionAckReqHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:1030
ns3::dsr::DsrOptionRreqHeader::GetId
uint16_t GetId() const
Set the request id number.
Definition:
dsr-option-header.cc:324
ns3::dsr::DsrOptionSRHeader::VectorIpv4Address_t
std::vector< Ipv4Address > VectorIpv4Address_t
A vector of IPv4 Address.
Definition:
dsr-option-header.h:686
ns3::dsr::NODE_UNREACHABLE
Definition:
dsr-option-header.h:721
ns3::dsr::DsrOptionRerrHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:742
ns3::dsr::DsrOptionRerrUnreachHeader::DsrOptionRerrUnreachHeader
DsrOptionRerrUnreachHeader()
Constructor.
Definition:
dsr-option-header.cc:798
ns3::dsr::DsrOptionRrepHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:484
ns3::Buffer
automatically resized byte buffer
Definition:
buffer.h:92
ns3::dsr::DsrOptionPad1Header
Header of Dsr Option Pad1.
Definition:
dsr-option-header.h:150
ns3::dsr::DsrOptionRreqHeader::GetNodesAddresses
std::vector< Ipv4Address > GetNodesAddresses() const
Get the vector of ipv4 address.
Definition:
dsr-option-header.cc:299
ns3::dsr::DsrOptionRerrUnreachHeader::m_unreachNode
Ipv4Address m_unreachNode
The unreachable node address.
Definition:
dsr-option-header.h:989
ns3::dsr::DsrOptionRreqHeader::m_target
Ipv4Address m_target
Definition:
dsr-option-header.h:386
ns3::dsr::DsrOptionRerrUnsupportHeader::SetErrorDst
virtual void SetErrorDst(Ipv4Address errorDstAddress)
Set the error destination ip address.
Definition:
dsr-option-header.cc:959
ns3::dsr::DsrOptionRerrUnreachHeader::m_errorDstAddress
Ipv4Address m_errorDstAddress
The error destination address.
Definition:
dsr-option-header.h:985
ns3::dsr::DsrOptionRerrUnreachHeader::SetErrorSrc
virtual void SetErrorSrc(Ipv4Address errorSrcAddress)
Set the route error source address.
Definition:
dsr-option-header.cc:821
ns3::dsr::DsrOptionRreqHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:363
ns3::dsr::DsrOptionRrepHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:402
ns3::dsr::DsrOptionHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:101
ns3::dsr::DsrOptionSRHeader::SetSegmentsLeft
void SetSegmentsLeft(uint8_t segmentsLeft)
Definition:
dsr-option-header.cc:540
ns3::dsr::DsrOptionSRHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:604
ns3::dsr::DsrOptionSRHeader::GetNodeListSize
uint8_t GetNodeListSize() const
Definition:
dsr-option-header.cc:587
ns3::dsr::DsrOptionAckReqHeader::~DsrOptionAckReqHeader
virtual ~DsrOptionAckReqHeader()
Destructor.
Definition:
dsr-option-header.cc:1052
ns3::dsr::DsrOptionSRHeader::GetSegmentsLeft
uint8_t GetSegmentsLeft() const
Definition:
dsr-option-header.cc:545
ns3::dsr::DsrOptionRrepHeader::m_address
Ipv4Address m_address
Definition:
dsr-option-header.h:533
ns3::dsr::DsrOptionRerrUnsupportHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:979
visualizer.core.start
def start
Definition:
core.py:1482
ns3::dsr::DsrOptionSRHeader::GetNodesAddress
std::vector< Ipv4Address > GetNodesAddress() const
Get the vector of ipv4 address.
Definition:
dsr-option-header.cc:572
ns3::dsr::DsrOptionPadnHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:216
ns3::dsr::DsrOptionRerrUnsupportHeader::SetUnsupported
void SetUnsupported(uint16_t optionType)
Set the unsupported option type value.
Definition:
dsr-option-header.cc:969
ns3::dsr::DsrOptionSRHeader
Source Route (SR) Message Format.
Definition:
dsr-option-header.h:569
ns3::dsr::DsrOptionAckHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:1173
ns3::dsr::DsrOptionAckReqHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:1066
ns3::dsr::DsrOptionHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:127
ns3::dsr::DsrOptionPadnHeader::~DsrOptionPadnHeader
virtual ~DsrOptionPadnHeader()
Destructor.
Definition:
dsr-option-header.cc:207
ns3::dsr::DsrOptionRerrUnreachHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:904
ns3::dsr::DsrOptionHeader::GetLength
uint8_t GetLength() const
Get the option length.
Definition:
dsr-option-header.cc:86
ns3::dsr::DsrOptionAckReqHeader
Acknowledgement Request (ACK_RREQ) Message Format.
Definition:
dsr-option-header.h:1155
ns3::dsr::DsrOptionHeader::Alignment
represents the alignment requirements of an option header
Definition:
dsr-option-header.h:57
ns3::dsr::DsrOptionSRHeader::SetNodeAddress
void SetNodeAddress(uint8_t index, Ipv4Address addr)
Set a Node IPv4 Address.
Definition:
dsr-option-header.cc:577
ns3::dsr::DsrOptionRerrHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:729
ns3::dsr::DsrOptionRerrUnreachHeader::GetUnreachNode
Ipv4Address GetUnreachNode() const
Get the unreachable node ip address.
Definition:
dsr-option-header.cc:846
ns3::dsr::DsrOptionRreqHeader::m_address
Ipv4Address m_address
Definition:
dsr-option-header.h:390
ns3::Buffer::Iterator
iterator in a Buffer instance
Definition:
buffer.h:98
ns3::dsr::DsrOptionRerrUnsupportHeader::DsrOptionRerrUnsupportHeader
DsrOptionRerrUnsupportHeader()
Constructor.
Definition:
dsr-option-header.cc:926
ns3::dsr::DsrOptionSRHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:592
ns3::dsr::DsrOptionRerrHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:671
ns3::dsr::DsrOptionRerrUnreachHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:784
ns3::dsr::DsrOptionRerrUnsupportHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:1022
ns3::dsr::ErrorType
ErrorType
Route Error (RERR) Message Format.
Definition:
dsr-option-header.h:719
ns3::dsr::DsrOptionAckHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:1184
ns3::dsr::DsrOptionRerrUnreachHeader::SetSalvage
virtual void SetSalvage(uint8_t salvage)
Set the salvage value of the packet.
Definition:
dsr-option-header.cc:811
ns3::dsr::DsrOptionAckHeader::m_identification
uint16_t m_identification
identification field
Definition:
dsr-option-header.h:1325
ns3::dsr::DsrOptionPad1Header::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:168
ns3::dsr::DsrOptionRrepHeader::GetNodesAddress
std::vector< Ipv4Address > GetNodesAddress() const
Get the vector of ipv4 address.
Definition:
dsr-option-header.cc:430
ns3::dsr::DsrOptionRerrHeader::m_errorDstAddress
Ipv4Address m_errorDstAddress
The error destination address.
Definition:
dsr-option-header.h:834
ns3::dsr::DsrOptionRrepHeader
Route Reply (RREP) Message Format.
Definition:
dsr-option-header.h:448
ns3::dsr::DsrOptionRreqHeader::m_identification
uint16_t m_identification
Identifier of the packet.
Definition:
dsr-option-header.h:382
ns3::dsr::DsrOptionRerrUnsupportHeader::m_errorSrcAddress
Ipv4Address m_errorSrcAddress
The error source address.
Definition:
dsr-option-header.h:1127
ns3::dsr::DsrOptionHeader::Alignment::offset
uint8_t offset
Definition:
dsr-option-header.h:60
ns3::dsr::DsrOptionSRHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:514
ns3::dsr::DsrOptionPadnHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:234
ns3::dsr::DsrOptionAckReqHeader::DsrOptionAckReqHeader
DsrOptionAckReqHeader()
Constructor.
Definition:
dsr-option-header.cc:1044
ns3::dsr::DsrOptionHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:47
ns3::dsr::DsrOptionSRHeader::m_ipv4Address
VectorIpv4Address_t m_ipv4Address
The vector of Nodes' IPv4 Address.
Definition:
dsr-option-header.h:690
ns3::dsr::DsrOptionRerrHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:737
ns3::dsr::DsrOptionRerrHeader::SetErrorSrc
virtual void SetErrorSrc(Ipv4Address errorSrcAddress)
Set the route error source address.
Definition:
dsr-option-header.cc:709
ns3::dsr::DsrOptionRerrUnreachHeader::SetErrorDst
virtual void SetErrorDst(Ipv4Address errorDstAddress)
Set the error destination ip address.
Definition:
dsr-option-header.cc:831
ns3::dsr::OPTION_NOT_SUPPORTED
Definition:
dsr-option-header.h:723
ns3::dsr::DsrOptionRerrHeader::SetErrorDst
virtual void SetErrorDst(Ipv4Address errorDstAddress)
Set the error destination ip address.
Definition:
dsr-option-header.cc:719
ns3::dsr::DsrOptionAckReqHeader::GetAckId
uint16_t GetAckId() const
Set the Ack request id number.
Definition:
dsr-option-header.cc:1061
ns3::dsr::DsrOptionRerrHeader::m_salvage
uint8_t m_salvage
The salavage field.
Definition:
dsr-option-header.h:822
ns3::dsr::DsrOptionHeader::m_data
Buffer m_data
The anonymous data of this option.
Definition:
dsr-option-header.h:143
ns3::dsr::DsrOptionRerrUnsupportHeader::~DsrOptionRerrUnsupportHeader
virtual ~DsrOptionRerrUnsupportHeader()
Destructor.
Definition:
dsr-option-header.cc:935
ns3::dsr::DsrOptionRreqHeader::VectorIpv4Address_t
std::vector< Ipv4Address > VectorIpv4Address_t
A vector of IPv4 Address.
Definition:
dsr-option-header.h:394
ns3::dsr::DsrOptionHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:96
ns3::dsr::DsrOptionSRHeader::~DsrOptionSRHeader
virtual ~DsrOptionSRHeader()
Destructor.
Definition:
dsr-option-header.cc:536
ns3::dsr::DsrOptionRreqHeader::GetNodesNumber
uint32_t GetNodesNumber() const
Get the number of nodes.
Definition:
dsr-option-header.cc:304
ns3::dsr::DsrOptionRerrUnsupportHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:1007
ns3::dsr::DsrOptionHeader::Alignment::factor
uint8_t factor
Definition:
dsr-option-header.h:59
ns3::dsr::DsrOptionRerrUnreachHeader::m_salvage
uint8_t m_salvage
The salavage field.
Definition:
dsr-option-header.h:977
ns3::dsr::DsrOptionRerrUnreachHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:861
ns3::dsr::DsrOptionRerrUnreachHeader::GetOriginalDst
Ipv4Address GetOriginalDst() const
Get the unreachable node ip address.
Definition:
dsr-option-header.cc:856
ns3::dsr::DsrOptionRerrUnsupportHeader::GetUnsupported
uint16_t GetUnsupported() const
Get the unsupported option type value.
Definition:
dsr-option-header.cc:974
ns3::dsr::DsrOptionPadnHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:186
ns3::dsr::DsrOptionRerrHeader::SetErrorType
void SetErrorType(uint8_t errorType)
Set the route error type.
Definition:
dsr-option-header.cc:689
ns3::dsr::DsrOptionSRHeader::SetNodesAddress
void SetNodesAddress(std::vector< Ipv4Address > ipv4Address)
Set the vector of ipv4 address.
Definition:
dsr-option-header.cc:566
ns3::dsr::DsrOptionRrepHeader::GetNodeAddress
Ipv4Address GetNodeAddress(uint8_t index) const
Get a Node IPv4 Address.
Definition:
dsr-option-header.cc:440
ns3::dsr::DsrOptionRerrHeader::GetErrorType
uint8_t GetErrorType() const
Get the route error type.
Definition:
dsr-option-header.cc:694
ns3::dsr::DsrOptionRerrHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:776
ns3::dsr::DsrOptionAckReqHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:1097
ns3::dsr::DsrOptionAckHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:1114
ns3::dsr::DsrOptionRreqHeader::DsrOptionRreqHeader
DsrOptionRreqHeader()
Constructor.
Definition:
dsr-option-header.cc:260
ns3::dsr::DsrOptionPad1Header::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:158
ns3::dsr::DsrOptionAckHeader::GetRealSrc
Ipv4Address GetRealSrc() const
Get Error source ip address.
Definition:
dsr-option-header.cc:1145
ns3::dsr::DsrOptionAckReqHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:1072
ns3::dsr::DsrOptionHeader::~DsrOptionHeader
virtual ~DsrOptionHeader()
Destructor.
Definition:
dsr-option-header.cc:67
ns3::dsr::DsrOptionAckHeader
Acknowledgement (ACK) Message Format.
Definition:
dsr-option-header.h:1242
ns3::dsr::DsrOptionRreqHeader::SetTarget
void SetTarget(Ipv4Address target)
Set the target ipv4 address.
Definition:
dsr-option-header.cc:282
ns3::dsr::DsrOptionAckHeader::SetRealDst
void SetRealDst(Ipv4Address realDstAddress)
Set Error source ip address.
Definition:
dsr-option-header.cc:1150
ns3::dsr::DsrOptionRrepHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:393
ns3::dsr::DsrOptionPad1Header::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:163
ns3::dsr::DsrOptionRreqHeader::SetNodeAddress
void SetNodeAddress(uint8_t index, Ipv4Address addr)
Set a Node IPv4 Address.
Definition:
dsr-option-header.cc:309
ns3::dsr::DsrOptionRerrUnreachHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:869
ns3::dsr::DsrOptionRrepHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:506
ns3::dsr::DsrOptionRerrUnsupportHeader
Route Error (RERR) Unsupported option Message Format.
Definition:
dsr-option-header.h:1027
ns3::dsr::DsrOptionAckHeader::DsrOptionAckHeader
DsrOptionAckHeader()
Constructor.
Definition:
dsr-option-header.cc:1119
ns3::dsr::DsrOptionSRHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:648
ns3::dsr::DsrOptionAckHeader::m_realSrcAddress
Ipv4Address m_realSrcAddress
ack source address
Definition:
dsr-option-header.h:1329
ns3::dsr::DsrOptionRerrUnsupportHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:988
ns3::dsr::DsrOptionRerrUnsupportHeader::GetErrorSrc
virtual Ipv4Address GetErrorSrc() const
Get the route error source address.
Definition:
dsr-option-header.cc:954
ns3::dsr::DsrOptionHeader::m_type
uint8_t m_type
The type of the option.
Definition:
dsr-option-header.h:135
ns3::dsr::DsrOptionRerrHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:755
ns3::dsr::DsrOptionRerrUnsupportHeader::SetSalvage
virtual void SetSalvage(uint8_t salvage)
Set the salvage value of the packet.
Definition:
dsr-option-header.cc:939
ns3::dsr::DsrOptionSRHeader::m_address
Ipv4Address m_address
The ip address header deserilize to.
Definition:
dsr-option-header.h:674
ns3::dsr::DsrOptionRrepHeader::m_ipv4Address
VectorIpv4Address_t m_ipv4Address
The vector of Nodes' IPv4 Address.
Definition:
dsr-option-header.h:541
ns3::dsr::DsrOptionHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:56
ns3::dsr::DsrOptionRreqHeader
Route Request (RREQ) Message Format.
Definition:
dsr-option-header.h:272
ns3::dsr::DsrOptionRreqHeader::SetId
void SetId(uint16_t identification)
Set the request id number.
Definition:
dsr-option-header.cc:319
ns3::dsr::DsrOptionSRHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:523
ns3::dsr::DsrOptionHeader::m_length
uint8_t m_length
The option length.
Definition:
dsr-option-header.h:139
ns3::dsr::DsrOptionRrepHeader::SetNodesAddress
void SetNodesAddress(std::vector< Ipv4Address > ipv4Address)
Set the vector of ipv4 address.
Definition:
dsr-option-header.cc:424
ns3::dsr::DsrOptionHeader::DsrOptionHeader
DsrOptionHeader()
Constructor.
Definition:
dsr-option-header.cc:61
ns3::dsr::DsrOptionRerrUnreachHeader::GetErrorDst
virtual Ipv4Address GetErrorDst() const
Get the error destination ip address.
Definition:
dsr-option-header.cc:836
ns3::dsr::DsrOptionPadnHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:195
ns3::dsr::DsrOptionAckReqHeader::m_identification
uint16_t m_identification
Definition:
dsr-option-header.h:1218
ns3::dsr::DsrOptionRerrHeader::GetSalvage
virtual uint8_t GetSalvage() const
Get the salvage value of the packet.
Definition:
dsr-option-header.cc:704
ns3::dsr::DsrOptionAckHeader::GetRealDst
Ipv4Address GetRealDst() const
Get Error source ip address.
Definition:
dsr-option-header.cc:1155
ns3::dsr::DsrOptionRreqHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:246
ns3::dsr::DsrOptionRerrUnsupportHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:993
ns3::dsr::DsrOptionAckHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:1168
ns3::dsr::DsrOptionRerrUnreachHeader::SetUnreachNode
void SetUnreachNode(Ipv4Address unreachNode)
Set the unreachable node ip address.
Definition:
dsr-option-header.cc:841
ns3::dsr::DsrOptionAckReqHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:1039
ns3::dsr::DsrOptionRerrUnsupportHeader::m_salvage
uint8_t m_salvage
The salavage field.
Definition:
dsr-option-header.h:1123
ns3::dsr::DsrOptionAckHeader::~DsrOptionAckHeader
virtual ~DsrOptionAckHeader()
Destructor.
Definition:
dsr-option-header.cc:1126
ns3::dsr::DsrOptionRerrUnreachHeader::m_originalDst
Ipv4Address m_originalDst
The original destination address.
Definition:
dsr-option-header.h:993
ns3::dsr::DsrOptionSRHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:626
ns3::dsr::DsrOptionRerrUnsupportHeader::GetErrorDst
virtual Ipv4Address GetErrorDst() const
Get the error destination ip address.
Definition:
dsr-option-header.cc:964
ns3::dsr::DsrOptionRerrUnreachHeader::~DsrOptionRerrUnreachHeader
virtual ~DsrOptionRerrUnreachHeader()
Destructor.
Definition:
dsr-option-header.cc:807
ns3::dsr::DsrOptionRreqHeader::SetNodesAddress
void SetNodesAddress(std::vector< Ipv4Address > ipv4Address)
Set the vector of ipv4 address.
Definition:
dsr-option-header.cc:293
ns3::Ipv4Address
Ipv4 addresses are stored in host order in this class.
Definition:
ipv4-address.h:38
ns3::dsr::DsrOptionRerrUnsupportHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:912
ns3::dsr::DsrOptionRreqHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:255
ns3::dsr::DsrOptionAckHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:1105
ns3::dsr::DsrOptionRerrUnsupportHeader::GetSalvage
virtual uint8_t GetSalvage() const
Get the salvage value of the packet.
Definition:
dsr-option-header.cc:944
ns3::dsr::FLOW_STATE_NOT_SUPPORTED
Definition:
dsr-option-header.h:722
ns3::dsr::DsrOptionRerrHeader::m_errorType
uint8_t m_errorType
The error type or route error option.
Definition:
dsr-option-header.h:818
ns3::dsr::DsrOptionHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:110
ns3::dsr::DsrOptionHeader
Header for Dsr Options.
Definition:
dsr-option-header.h:50
ns3::dsr::DsrOptionRreqHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:346
ns3::dsr::DsrOptionRerrUnreachHeader
Route Error (RERR) Unreachable node address option Message Format.
Definition:
dsr-option-header.h:871
ns3::dsr::DsrOptionRreqHeader::SetNumberAddress
void SetNumberAddress(uint8_t n)
Set the number of ipv4 address.
Definition:
dsr-option-header.cc:271
ns3::dsr::DsrOptionAckReqHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:1086
ns3::dsr::DsrOptionAckHeader::SetRealSrc
void SetRealSrc(Ipv4Address realSrcAddress)
Set Error source ip address.
Definition:
dsr-option-header.cc:1140
ns3::dsr::DsrOptionHeader::SetType
void SetType(uint8_t type)
Set the type of the option.
Definition:
dsr-option-header.cc:71
ns3::dsr::DsrOptionRrepHeader::Serialize
virtual void Serialize(Buffer::Iterator start) const
Serialize the packet.
Definition:
dsr-option-header.cc:467
ns3::dsr::DsrOptionPadnHeader
Header of Dsr Option Padn.
Definition:
dsr-option-header.h:199
ns3::dsr::DsrOptionRerrHeader::DsrOptionRerrHeader
DsrOptionRerrHeader()
Constructor.
Definition:
dsr-option-header.cc:676
ns3::dsr::DsrOptionRerrHeader::~DsrOptionRerrHeader
virtual ~DsrOptionRerrHeader()
Destructor.
Definition:
dsr-option-header.cc:685
ns3::dsr::DsrOptionRerrUnreachHeader::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:888
ns3::dsr::DsrOptionRerrUnreachHeader::m_errorType
uint8_t m_errorType
The error type or route error option.
Definition:
dsr-option-header.h:973
ns3::dsr::DsrOptionRrepHeader::SetNumberAddress
void SetNumberAddress(uint8_t n)
Set the number of ipv4 address.
Definition:
dsr-option-header.cc:418
ns3::dsr::DsrOptionRrepHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:450
ns3::dsr::DsrOptionAckHeader::m_realDstAddress
Ipv4Address m_realDstAddress
ack destination address
Definition:
dsr-option-header.h:1333
ns3::dsr::DsrOptionSRHeader::SetNumberAddress
void SetNumberAddress(uint8_t n)
Set the number of ipv4 address.
Definition:
dsr-option-header.cc:560
ns3::dsr::DsrOptionRerrUnreachHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:793
ns3::dsr::DsrOptionRrepHeader::GetTargetAddress
Ipv4Address GetTargetAddress(std::vector< Ipv4Address > ipv4Address) const
Definition:
dsr-option-header.cc:445
ns3::dsr::DsrOptionRreqHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:341
ns3::dsr::DsrOptionRreqHeader::m_ipv4Address
VectorIpv4Address_t m_ipv4Address
The vector of Nodes' IPv4 Address.
Definition:
dsr-option-header.h:398
ns3::dsr::DsrOptionRreqHeader::~DsrOptionRreqHeader
virtual ~DsrOptionRreqHeader()
Destructor.
Definition:
dsr-option-header.cc:267
ns3::dsr::DsrOptionRrepHeader::GetSerializedSize
virtual uint32_t GetSerializedSize() const
Get the serialized size of the packet.
Definition:
dsr-option-header.cc:462
ns3::dsr::DsrOptionAckHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:1197
ns3::dsr::DsrOptionRerrUnsupportHeader::m_errorDstAddress
Ipv4Address m_errorDstAddress
The error destination address.
Definition:
dsr-option-header.h:1131
ns3::dsr::DsrOptionRreqHeader::GetAlignment
virtual Alignment GetAlignment() const
Get the Alignment requirement of this option header.
Definition:
dsr-option-header.cc:385
ns3::dsr::DsrOptionRrepHeader::~DsrOptionRrepHeader
virtual ~DsrOptionRrepHeader()
Destructor.
Definition:
dsr-option-header.cc:414
ns3::dsr::operator<<
static std::ostream & operator<<(std::ostream &os, const DsrRoutingHeader &dsr)
Definition:
dsr-fs-header.h:322
ns3::dsr::DsrOptionRerrHeader::GetErrorSrc
virtual Ipv4Address GetErrorSrc() const
Get the route error source address.
Definition:
dsr-option-header.cc:714
ns3::dsr::DsrOptionSRHeader::m_segmentsLeft
uint8_t m_segmentsLeft
Number of left segments.
Definition:
dsr-option-header.h:678
ns3::dsr::DsrOptionPad1Header::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:144
ns3::dsr::DsrOptionPad1Header::~DsrOptionPad1Header
virtual ~DsrOptionPad1Header()
Destructor.
Definition:
dsr-option-header.cc:154
ns3::dsr::DsrOptionPadnHeader::Print
virtual void Print(std::ostream &os) const
Print some informations about the packet.
Definition:
dsr-option-header.cc:211
ns3::dsr::DsrOptionAckHeader::SetAckId
void SetAckId(uint16_t identification)
Set the Ack id number.
Definition:
dsr-option-header.cc:1130
ns3::dsr::DsrOptionHeader::SetLength
void SetLength(uint8_t length)
Set the option length.
Definition:
dsr-option-header.cc:81
ns3::dsr::DsrOptionRerrHeader::m_errorSrcAddress
Ipv4Address m_errorSrcAddress
The error source address.
Definition:
dsr-option-header.h:830
ns3::dsr::DsrOptionRerrUnreachHeader::GetSalvage
virtual uint8_t GetSalvage() const
Get the salvage value of the packet.
Definition:
dsr-option-header.cc:816
ns3::dsr::DsrOptionRerrHeader::m_errorData
Buffer m_errorData
The anonymous data of this option.
Definition:
dsr-option-header.h:838
ns3::dsr::DsrOptionRrepHeader::SetNodeAddress
void SetNodeAddress(uint8_t index, Ipv4Address addr)
Set a Node IPv4 Address.
Definition:
dsr-option-header.cc:435
ns3::dsr::DsrOptionSRHeader::GetSalvage
uint8_t GetSalvage() const
Definition:
dsr-option-header.cc:555
ns3::dsr::DsrOptionPad1Header::Deserialize
virtual uint32_t Deserialize(Buffer::Iterator start)
Deserialize the packet.
Definition:
dsr-option-header.cc:175
ns3::dsr::DsrOptionHeader::GetType
uint8_t GetType() const
Get the type of the option.
Definition:
dsr-option-header.cc:76
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:49
ns3::dsr::DsrOptionRerrHeader::m_errorLength
uint16_t m_errorLength
The specific error message length.
Definition:
dsr-option-header.h:826
ns3::dsr::DsrOptionSRHeader::SetSalvage
void SetSalvage(uint8_t salvage)
Definition:
dsr-option-header.cc:550
ns3::dsr::DsrOptionRerrUnreachHeader::m_errorSrcAddress
Ipv4Address m_errorSrcAddress
The error source address.
Definition:
dsr-option-header.h:981
ns3::dsr::DsrOptionRerrHeader
Header of Dsr Option Route Error.
Definition:
dsr-option-header.h:726
ns3::dsr::DsrOptionRerrUnreachHeader::SetOriginalDst
void SetOriginalDst(Ipv4Address originalDst)
Set the unreachable node ip address.
Definition:
dsr-option-header.cc:851
ns3::dsr::DsrOptionRerrUnsupportHeader::GetInstanceTypeId
virtual TypeId GetInstanceTypeId() const
Get the instance type ID.
Definition:
dsr-option-header.cc:921
ns3::dsr::DsrOptionRrepHeader::VectorIpv4Address_t
std::vector< Ipv4Address > VectorIpv4Address_t
type def A vector of IPv4 Address.
Definition:
dsr-option-header.h:537
ns3::dsr::DsrOptionRerrHeader::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:656
ns3::dsr::DsrOptionRerrHeader::SetSalvage
virtual void SetSalvage(uint8_t salvage)
Set the salvage value of the packet.
Definition:
dsr-option-header.cc:699
ns3::dsr::DsrOptionPad1Header::GetTypeId
static TypeId GetTypeId()
Get the type identificator.
Definition:
dsr-option-header.cc:135
ns3::dsr::DsrOptionSRHeader::m_salvage
uint8_t m_salvage
Number of savlage times for a packet.
Definition:
dsr-option-header.h:682
src
dsr
model
dsr-option-header.h
Generated on Sat Nov 16 2013 12:55:26 for ns-3 by
1.8.5