A Discrete-Event Network Simulator
API
ipv6-route.h
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2007-2009 Strasbourg University
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: Sebastien Vincent <vincent@clarinet.u-strasbg.fr>
19 */
20
21#ifndef IPV6_ROUTE_H
22#define IPV6_ROUTE_H
23
24#include <list>
25#include <map>
26#include <ostream>
27
28#include "ns3/simple-ref-count.h"
29
30#include "ns3/ipv6-address.h"
31
32namespace ns3
33{
34
35class NetDevice;
36
42class Ipv6Route : public SimpleRefCount<Ipv6Route>
43{
44public:
48 Ipv6Route ();
49
53 virtual ~Ipv6Route ();
54
59 void SetDestination (Ipv6Address dest);
60
66
71 void SetSource (Ipv6Address src);
72
77 Ipv6Address GetSource () const;
78
83 void SetGateway (Ipv6Address gw);
84
89 Ipv6Address GetGateway () const;
90
95 void SetOutputDevice (Ptr<NetDevice> outputDevice);
96
102
103private:
108
113
118
123};
124
132std::ostream& operator<< (std::ostream& os, Ipv6Route const& route);
133
139class Ipv6MulticastRoute : public SimpleRefCount<Ipv6MulticastRoute>
140{
141public:
145 static const uint32_t MAX_INTERFACES = 16;
146
150 static const uint32_t MAX_TTL = 255;
151
156
160 virtual ~Ipv6MulticastRoute ();
161
166 void SetGroup (const Ipv6Address group);
167
172 Ipv6Address GetGroup (void) const;
173
178 void SetOrigin (const Ipv6Address origin);
179
184 Ipv6Address GetOrigin (void) const;
185
190 void SetParent (uint32_t iif);
191
196 uint32_t GetParent (void) const;
197
203 void SetOutputTtl (uint32_t oif, uint32_t ttl);
204
208 std::map<uint32_t, uint32_t> GetOutputTtlMap () const;
209
210private:
215
220
225
229 std::map<uint32_t, uint32_t> m_ttls;
230};
231
239std::ostream& operator<< (std::ostream& os, Ipv6MulticastRoute const& route);
240
241} /* namespace ns3 */
242
243#endif /* IPV6_ROUTE_H */
244
Describes an IPv6 address.
Definition: ipv6-address.h:50
IPv6 multicast route entry.
Definition: ipv6-route.h:140
void SetOrigin(const Ipv6Address origin)
Set origin address.
Definition: ipv6-route.cc:102
std::map< uint32_t, uint32_t > GetOutputTtlMap() const
Definition: ipv6-route.cc:140
Ipv6Address GetOrigin(void) const
Get source address.
Definition: ipv6-route.cc:107
Ipv6Address m_origin
IPv6 origin (source).
Definition: ipv6-route.h:219
static const uint32_t MAX_TTL
Maximum Time-To-Live (TTL).
Definition: ipv6-route.h:150
Ipv6MulticastRoute()
Constructor.
Definition: ipv6-route.cc:83
Ipv6Address GetGroup(void) const
Get IPv6 group.
Definition: ipv6-route.cc:97
static const uint32_t MAX_INTERFACES
Maximum number of multicast interfaces on a router.
Definition: ipv6-route.h:145
Ipv6Address m_group
IPv6 group.
Definition: ipv6-route.h:214
void SetParent(uint32_t iif)
Set parent for this route.
Definition: ipv6-route.cc:112
uint32_t m_parent
Source interface.
Definition: ipv6-route.h:224
std::map< uint32_t, uint32_t > m_ttls
TTLs.
Definition: ipv6-route.h:229
uint32_t GetParent(void) const
Get parent for this route.
Definition: ipv6-route.cc:117
void SetGroup(const Ipv6Address group)
Set IPv6 group.
Definition: ipv6-route.cc:92
void SetOutputTtl(uint32_t oif, uint32_t ttl)
set output TTL for this route.
Definition: ipv6-route.cc:122
virtual ~Ipv6MulticastRoute()
Destructor.
Definition: ipv6-route.cc:88
IPv6 route cache entry.
Definition: ipv6-route.h:43
void SetGateway(Ipv6Address gw)
Set gateway address.
Definition: ipv6-route.cc:57
void SetSource(Ipv6Address src)
Set source address.
Definition: ipv6-route.cc:47
virtual ~Ipv6Route()
Destructor.
Definition: ipv6-route.cc:33
Ipv6Address GetDestination() const
Get destination address.
Definition: ipv6-route.cc:42
void SetDestination(Ipv6Address dest)
Set destination address.
Definition: ipv6-route.cc:37
Ptr< NetDevice > m_outputDevice
Output device.
Definition: ipv6-route.h:122
Ipv6Address GetSource() const
Get source address.
Definition: ipv6-route.cc:52
Ipv6Address m_source
source address.
Definition: ipv6-route.h:112
Ipv6Address m_dest
Destination address.
Definition: ipv6-route.h:107
Ptr< NetDevice > GetOutputDevice() const
Get output device.
Definition: ipv6-route.cc:72
Ipv6Address m_gateway
Gateway address.
Definition: ipv6-route.h:117
Ipv6Address GetGateway() const
Get gateway address.
Definition: ipv6-route.cc:62
Ipv6Route()
Constructor.
Definition: ipv6-route.cc:29
void SetOutputDevice(Ptr< NetDevice > outputDevice)
Set output device for outgoing packets.
Definition: ipv6-route.cc:67
A template-based reference counting class.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition: angles.cc:139