A Discrete-Event Network Simulator
API
udp-trace-client.h
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2007,2008, 2009 INRIA, UDcast
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: Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
19 * <amine.ismail@udcast.com>
20 */
21
22#ifndef UDP_TRACE_CLIENT_H
23#define UDP_TRACE_CLIENT_H
24
25#include "ns3/application.h"
26#include "ns3/event-id.h"
27#include "ns3/ptr.h"
28#include "ns3/ipv4-address.h"
29#include <vector>
30
31namespace ns3 {
32
33class Socket;
34class Packet;
35
60class UdpTraceClient : public Application
61{
62public:
67 static TypeId GetTypeId (void);
68
70
82 UdpTraceClient (Ipv4Address ip, uint16_t port, char *traceFile);
84
90 void SetRemote (Address ip, uint16_t port);
95 void SetRemote (Address addr);
96
104 void SetTraceFile (std::string filename);
105
110 uint16_t GetMaxPacketSize (void);
111
116 void SetMaxPacketSize (uint16_t maxPacketSize);
117
122 void SetTraceLoop (bool traceLoop);
123
124protected:
125 virtual void DoDispose (void);
126
127private:
132 void LoadTrace (std::string filename);
136 void LoadDefaultTrace (void);
137 virtual void StartApplication (void);
138 virtual void StopApplication (void);
139
143 void Send (void);
148 void SendPacket (uint32_t size);
149
156 {
160 };
161
165 uint16_t m_peerPort;
167
168 std::vector<struct TraceEntry> m_entries;
170 static struct TraceEntry g_defaultEntries[];
173};
174
175} // namespace ns3
176
177#endif /* UDP_TRACE_CLIENT_H */
a polymophic address class
Definition: address.h:91
An identifier for simulation events.
Definition: event-id.h:54
uint16_t port
Definition: dsdv-manet.cc:45
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Entry to send.
uint32_t timeToSend
Time to send the frame.
uint32_t packetSize
Size of the frame.
char frameType
Frame type (I, P or B)
EventId m_sendEvent
Event to send the next packet.
void Send(void)
Send a packet.
uint16_t m_peerPort
Remote peer port.
void SetTraceLoop(bool traceLoop)
Set the trace loop flag.
uint32_t m_sent
Counter for sent packets.
void SetRemote(Address ip, uint16_t port)
set the remote address and port
Address m_peerAddress
Remote peer address.
virtual void StopApplication(void)
Application specific shutdown code.
uint32_t m_currentEntry
Current entry index.
void SetTraceFile(std::string filename)
Set the trace file to be used by the application.
void LoadTrace(std::string filename)
Load a trace file.
void SetMaxPacketSize(uint16_t maxPacketSize)
Set the maximum packet size.
std::vector< struct TraceEntry > m_entries
Entries in the trace to send.
virtual void StartApplication(void)
Application specific startup code.
void SendPacket(uint32_t size)
Send a packet of a given size.
uint16_t GetMaxPacketSize(void)
Return the maximum packet size.
bool m_traceLoop
Loop through the trace file.
uint16_t m_maxPacketSize
Maximum packet size to send (including the SeqTsHeader)
virtual void DoDispose(void)
Destructor implementation.
static TypeId GetTypeId(void)
Get the type ID.
void LoadDefaultTrace(void)
Load the default trace.
Ptr< Socket > m_socket
Socket.