A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ping6-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-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 PING6_HELPER_H
22 #define PING6_HELPER_H
23 
24 #include <stdint.h>
25 
26 #include "ns3/object-factory.h"
27 #include "ns3/ipv6-address.h"
28 
29 #include "ns3/application-container.h"
30 #include "ns3/node-container.h"
31 
32 namespace ns3 {
33 
40 {
41 public:
45  Ping6Helper ();
46 
51  void SetLocal (Ipv6Address ip);
52 
57  void SetRemote (Ipv6Address ip);
58 
64  void SetAttribute (std::string name, const AttributeValue& value);
65 
72 
79  void SetIfIndex (uint32_t ifIndex);
80 
81 
86  void SetRoutersAddress (std::vector<Ipv6Address> routers);
87 
88 private:
93 
98 
103 
107  uint32_t m_ifIndex;
108 
112  std::vector<Ipv6Address> m_routers;
113 };
114 
115 } /* namespace ns3 */
116 
117 #endif /* PING6_HELPER_H */
118 
holds a vector of ns3::Application pointers.
ApplicationContainer Install(NodeContainer c)
Install the application in Nodes.
Definition: ping6-helper.cc:50
Hold a value for an Attribute.
Definition: attribute.h:56
void SetAttribute(std::string name, const AttributeValue &value)
Set some attributes.
Definition: ping6-helper.cc:45
uint32_t m_ifIndex
Out interface index.
Definition: ping6-helper.h:107
void SetLocal(Ipv6Address ip)
Set the local IPv6 address.
Definition: ping6-helper.cc:35
void SetRoutersAddress(std::vector< Ipv6Address > routers)
Set routers addresses for routing type 0.
Definition: ping6-helper.cc:72
keep track of a set of node pointers.
void SetRemote(Ipv6Address ip)
Set the remote IPv6 address.
Definition: ping6-helper.cc:40
Describes an IPv6 address.
Definition: ipv6-address.h:46
instantiate subclasses of ns3::Object.
void SetIfIndex(uint32_t ifIndex)
Set the out interface index.
Definition: ping6-helper.cc:67
Ipv6Address m_remoteIp
The remote IPv6 address.
Definition: ping6-helper.h:102
Ping6 application helper.
Definition: ping6-helper.h:39
Ipv6Address m_localIp
The local IPv6 address.
Definition: ping6-helper.h:97
Ping6Helper()
Constructor.
Definition: ping6-helper.cc:29
ObjectFactory m_factory
An object factory.
Definition: ping6-helper.h:92
std::vector< Ipv6Address > m_routers
Routers addresses.
Definition: ping6-helper.h:112