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
ipv6-routing-helper.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2008 INRIA
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: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19
*/
20
21
#ifndef IPV6_ROUTING_HELPER_H
22
#define IPV6_ROUTING_HELPER_H
23
24
#include "ns3/ptr.h"
25
#include "ns3/nstime.h"
26
#include "ns3/output-stream-wrapper.h"
27
#include "ns3/ipv6-list-routing.h"
28
29
namespace
ns3 {
30
31
class
Ipv6RoutingProtocol;
32
class
Node;
33
43
class
Ipv6RoutingHelper
44
{
45
public
:
46
51
virtual
~Ipv6RoutingHelper
();
52
60
virtual
Ipv6RoutingHelper
*
Copy
(
void
)
const
= 0;
61
66
virtual
Ptr<Ipv6RoutingProtocol>
Create
(
Ptr<Node>
node)
const
= 0;
67
77
void
PrintRoutingTableAllAt
(
Time
printTime,
Ptr<OutputStreamWrapper>
stream)
const
;
78
88
void
PrintRoutingTableAllEvery
(
Time
printInterval,
Ptr<OutputStreamWrapper>
stream)
const
;
89
100
void
PrintRoutingTableAt
(
Time
printTime,
Ptr<Node>
node,
Ptr<OutputStreamWrapper>
stream)
const
;
101
112
void
PrintRoutingTableEvery
(
Time
printInterval,
Ptr<Node>
node,
Ptr<OutputStreamWrapper>
stream)
const
;
113
123
template
<
class
T>
124
static
Ptr<T>
GetRouting
(
Ptr<Ipv6RoutingProtocol>
protocol);
125
126
private
:
127
void
Print
(
Ptr<Node>
node,
Ptr<OutputStreamWrapper>
stream)
const
;
128
void
PrintEvery
(
Time
printInterval,
Ptr<Node>
node,
Ptr<OutputStreamWrapper>
stream)
const
;
129
};
130
131
template
<
class
T>
132
Ptr<T>
Ipv6RoutingHelper::GetRouting
(
Ptr<Ipv6RoutingProtocol>
protocol)
133
{
134
Ptr<T>
ret = DynamicCast<T> (protocol);
135
if
(ret == 0)
136
{
137
// trying to check if protocol is a list routing
138
Ptr<Ipv6ListRouting>
lrp = DynamicCast<Ipv6ListRouting> (protocol);
139
if
(lrp != 0)
140
{
141
for
(uint32_t i = 0; i < lrp->GetNRoutingProtocols (); i++)
142
{
143
int16_t priority;
144
ret = GetRouting<T> (lrp->GetRoutingProtocol (i, priority));
// potential recursion, if inside ListRouting is ListRouting
145
if
(ret != 0)
146
break
;
147
}
148
}
149
}
150
151
return
ret;
152
}
153
154
}
// namespace ns3
155
156
157
#endif
/* IPV6_ROUTING_HELPER_H */
158
src
internet
helper
ipv6-routing-helper.h
Generated on Fri Aug 30 2013 01:42:50 for ns-3 by
1.8.1.2