|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
22 #include "ns3/socket-factory.h"
23 #include "ns3/simulator.h"
24 #include "ns3/socket.h"
25 #include "ns3/boolean.h"
29 #include "ns3/inet6-socket-address.h"
30 #include "ns3/internet-stack-helper.h"
31 #include "ns3/ipv6-address-helper.h"
32 #include "ns3/icmpv6-l4-protocol.h"
34 #include "ns3/sixlowpan-net-device.h"
35 #include "ns3/sixlowpan-header.h"
36 #include "ns3/sixlowpan-helper.h"
111 virtual void DoRun (
void);
116 :
TestCase (
"Sixlowpan IPHC stateful implementation")
126 incomingPkt.
src = source;
127 incomingPkt.
dst = destination;
134 Simulator::ScheduleWithContext (
id,
Time(1), &MockNetDevice::Receive, mockDev, incomingPkt.
packet, protocol, destination, source, packetType);
145 incomingPkt.
src = source;
146 incomingPkt.
dst = destination;
175 nodes.Get (0)->AddDevice (mockNetDevice0);
178 mockNetDevice0->
SetMtu (150);
184 nodes.Get (1)->AddDevice (mockNetDevice1);
187 mockNetDevice1->
SetMtu (150);
203 for (
auto i =
nodes.Begin (); i !=
nodes.End (); i++)
226 Ipv6Address::GetAny (),
241 Simulator::Stop (
Seconds (10));
244 Simulator::Destroy ();
334 :
TestSuite (
"sixlowpan-iphc-stateful", UNIT)
holds a vector of ns3::NetDevice pointers
Structure to hold the Rx/Tx packets.
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
AttributeValue implementation for Boolean.
SixlowpanIphcStatefulImplTest()
uint32_t GetId(void) const
void AddHeader(const Header &header)
Add header to this packet.
std::vector< Data > m_rxPackets
Received packets.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static SixlowpanIphcStatefulTestSuite g_sixlowpanIphcStatefulTestSuite
Static variable for test initialization.
IPv6 layer implementation.
Address dst
Destination address.
HeaderCompression_e GetDam(void) const
Get the DAM (Destination Address Mode) compression.
bool GetSac(void) const
Get the SAC (Source Address Compression) compression.
Describes an IPv6 address.
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
void SetBase(Ipv6Address network, Ipv6Prefix prefix, Ipv6Address base=Ipv6Address("::1"))
Set the base network number, network prefix, and base interface ID.
void AddContext(NetDeviceContainer c, uint8_t contextId, Ipv6Prefix context, Time validity)
Adds a compression Context to a set of NetDevices.
Helper class to auto-assign global IPv6 unicast addresses.
void SendOnePacket(Ptr< NetDevice > device, Ipv6Address from, Ipv6Address to)
Send one packet.
HeaderCompression_e GetSam(void) const
Get the SAM (Source Address Mode) compression.
void SendOnePacket(Ptr< LrWpanPhy > sender, Ptr< LrWpanPhy > receiver)
Send one packet.
Ipv6InterfaceContainer Assign(const NetDeviceContainer &c)
Allocate an Ipv6InterfaceContainer with auto-assigned addresses.
bool GetM(void) const
Get the M (Multicast) compression.
virtual bool SetMtu(const uint16_t mtu)
std::vector< Data > m_txPackets
Transmitted packets.
a polymophic address class
Ptr< Packet > packet
Packet data.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
bool GetCid(void) const
Get the CID (Context Identifier Extension) compression.
Ipv6Address GetAddress(uint32_t i, uint32_t j) const
Get the address for the specified index.
Keep track of a set of IPv6 interfaces.
NetDeviceContainer Install(NetDeviceContainer c)
Install the SixLoWPAN stack on top of an existing NetDevice.
virtual void SetAddress(Address address)
Set the address of this interface.
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
NetDeviceContainer m_sixDevices
SixLowPanNetDevice container.
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)=0
virtual Ptr< Node > GetNode(void) const
uint8_t GetDstContextId(void) const
Get the DstContextId.
NetDeviceContainer m_mockDevices
MockNetDevice container.
Time Minutes(double value)
Construct a Time in the indicated unit.
virtual void DoRun(void)
Implementation to actually run this TestCase.
bool GetDac(void) const
Get the DAC (Destination Address Compression) compression.
Callback< R, Ts... > MakeCallback(R(T::*memPtr)(Ts...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
virtual void SetNode(Ptr< Node > node)
Time Seconds(double value)
Construct a Time in the indicated unit.
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
SixlowpanIphcStatefulTestSuite()
Setup a sixlowpan stack to be used as a shim between IPv6 and a generic NetDevice.
bool PromiscReceiveFromSixLowPanDevice(Ptr< NetDevice > device, Ptr< const Packet > packet, uint16_t protocol, Address const &source, Address const &destination, NetDevice::PacketType packetType)
Promiscuous receive from a SixLowPanNetDevice.
keep track of a set of node pointers.
PacketType
Packet types are used as they are in Linux.
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
void SetSendCallback(PromiscReceiveCallback cb)
Add a callback to be invoked when the MockNetDevice has a packet to "send".
LOWPAN_IPHC base Encoding - see RFC 6282.
6LoWPAN IPHC stateful compression Test
uint8_t GetSrcContextId(void) const
Get the SrcContextId.
Address src
Source address.
Describes an IPv6 prefix.
aggregate IP/TCP/UDP functionality to existing Nodes.
bool ReceiveFromMockDevice(Ptr< NetDevice > device, Ptr< const Packet > packet, uint16_t protocol, Address const &source, Address const &destination, NetDevice::PacketType packetType)
Receive from a MockDevice.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
An implementation of the ICMPv6 protocol.
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
virtual void SetPromiscReceiveCallback(PromiscReceiveCallback cb)=0