A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
sixlowpan-helper.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011 Universita' di Firenze, Italy
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 * Author: Tommaso Pecorella <tommaso.pecorella@unifi.it>
18 */
19
20#ifndef SIXLOWPAN_HELPER_H
21#define SIXLOWPAN_HELPER_H
22
23#include "ns3/net-device-container.h"
24#include "ns3/object-factory.h"
25
26#include <string>
27
28namespace ns3
29{
30
31class Node;
32class AttributeValue;
33class Time;
34
41{
42 public:
43 /*
44 * Construct a SixlowpanHelper
45 */
54 void SetDeviceAttribute(std::string n1, const AttributeValue& v1);
55
82
94 void AddContext(NetDeviceContainer c, uint8_t contextId, Ipv6Prefix context, Time validity);
95
105 void RenewContext(NetDeviceContainer c, uint8_t contextId, Time validity);
106
119 void InvalidateContext(NetDeviceContainer c, uint8_t contextId);
120
129 void RemoveContext(NetDeviceContainer c, uint8_t contextId);
130
142 int64_t AssignStreams(NetDeviceContainer c, int64_t stream);
143
144 private:
146};
147
148} // namespace ns3
149
150#endif /* SIXLOWPAN_HELPER_H */
Hold a value for an Attribute.
Definition: attribute.h:70
Describes an IPv6 prefix.
Definition: ipv6-address.h:455
holds a vector of ns3::NetDevice pointers
Instantiate subclasses of ns3::Object.
Setup a sixlowpan stack to be used as a shim between IPv6 and a generic NetDevice.
ObjectFactory m_deviceFactory
Object factory.
void SetDeviceAttribute(std::string n1, const AttributeValue &v1)
Set an attribute on each ns3::SixlowpanNetDevice created by SixlowpanHelper::Install.
NetDeviceContainer Install(NetDeviceContainer c)
Install the SixLoWPAN stack on top of an existing NetDevice.
void RemoveContext(NetDeviceContainer c, uint8_t contextId)
Remove a compression Context in a set of NetDevices.
void RenewContext(NetDeviceContainer c, uint8_t contextId, Time validity)
Renew a compression Context in a set of NetDevices.
int64_t AssignStreams(NetDeviceContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model.
void InvalidateContext(NetDeviceContainer c, uint8_t contextId)
Invalidates a compression Context in a set of NetDevices.
void AddContext(NetDeviceContainer c, uint8_t contextId, Ipv6Prefix context, Time validity)
Adds a compression Context to a set of NetDevices.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
Definition: nstime.h:848
Every class exported by the ns3 library is enclosed in the ns3 namespace.