A Discrete-Event Network Simulator
API
ping6.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 PING6_H
22#define PING6_H
23
24#include "ns3/application.h"
25#include "ns3/ipv6-address.h"
26#include "ns3/ipv6-l3-protocol.h"
27
28namespace ns3
29{
30
31class Packet;
32class Socket;
33
43class Ping6 : public Application
44{
45public:
50 static TypeId GetTypeId ();
51
55 Ping6 ();
56
60 virtual ~Ping6 ();
61
66 void SetLocal (Ipv6Address ipv6);
67
72 void SetRemote (Ipv6Address ipv6);
73
80 void SetIfIndex (uint32_t ifIndex);
81
86 void SetRouters (std::vector<Ipv6Address> routers);
87
88protected:
92 virtual void DoDispose ();
93
94private:
98 virtual void StartApplication ();
99
103 virtual void StopApplication ();
104
109 void ScheduleTransmit (Time dt);
110
114 void Send ();
115
120 void HandleRead (Ptr<Socket> socket);
121
126
131
136
141
146
151
156
161
166
171
175 uint16_t m_seq;
176
181
186
190 std::vector<Ipv6Address> m_routers;
191};
192
193} /* namespace ns3 */
194
195#endif /* PING6_H */
196
The base class for all ns3 applications.
Definition: application.h:61
An identifier for simulation events.
Definition: event-id.h:54
Describes an IPv6 address.
Definition: ipv6-address.h:50
A ping6 application.
Definition: ping6.h:44
uint32_t m_ifIndex
Out interface (i.e.
Definition: ping6.h:185
virtual ~Ping6()
Destructor.
Definition: ping6.cc:89
void SetRemote(Ipv6Address ipv6)
Set the remote peer.
Definition: ping6.cc:132
void SetLocal(Ipv6Address ipv6)
Set the local address.
Definition: ping6.cc:126
Ipv6Address m_localAddress
Local address.
Definition: ping6.h:150
virtual void DoDispose()
Dispose this object;.
Definition: ping6.cc:95
EventId m_sendEvent
Event ID.
Definition: ping6.h:180
void HandleRead(Ptr< Socket > socket)
Receive method.
Definition: ping6.cc:249
std::vector< Ipv6Address > m_routers
Routers addresses for routing type 0.
Definition: ping6.h:190
uint32_t m_count
Number of "Echo request" packets that will be sent.
Definition: ping6.h:130
virtual void StopApplication()
Stop the application.
Definition: ping6.cc:138
void SetIfIndex(uint32_t ifIndex)
Set the out interface index.
Definition: ping6.cc:150
Ptr< Socket > m_socket
Local socket.
Definition: ping6.h:170
Ipv6Address m_address
Peer IPv6 address.
Definition: ping6.h:125
void Send()
Send a packet.
Definition: ping6.cc:166
void SetRouters(std::vector< Ipv6Address > routers)
Set routers for routing type 0 (loose routing).
Definition: ping6.cc:161
uint16_t m_seq
Sequence number.
Definition: ping6.h:175
Time m_interval
Interval between packets sent.
Definition: ping6.h:145
virtual void StartApplication()
Start the application.
Definition: ping6.cc:101
uint32_t m_ipInterfaceIndex
IP interface index relative to the local address.
Definition: ping6.h:155
Ptr< Ipv6L3Protocol > m_ipv6Protocol
IP interface index relative to the local address.
Definition: ping6.h:160
uint32_t m_sent
Number of packets sent.
Definition: ping6.h:135
Ipv6Address m_peerAddress
Peer address.
Definition: ping6.h:165
uint32_t m_size
Size of the packet.
Definition: ping6.h:140
Ping6()
Constructor.
Definition: ping6.cc:78
static TypeId GetTypeId()
Get the type ID.
Definition: ping6.cc:43
void ScheduleTransmit(Time dt)
Schedule sending a packet.
Definition: ping6.cc:155
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.