19 #include "ns3/ipv4-address.h"
20 #include "ns3/ipv6-address.h"
21 #include "ns3/nstime.h"
22 #include "ns3/inet-socket-address.h"
23 #include "ns3/inet6-socket-address.h"
24 #include "ns3/socket.h"
25 #include "ns3/simulator.h"
26 #include "ns3/socket-factory.h"
27 #include "ns3/packet.h"
28 #include "ns3/uinteger.h"
29 #include "ns3/trace-source-accessor.h"
44 .AddConstructor<UdpEchoClient> ()
45 .AddAttribute (
"MaxPackets",
46 "The maximum number of packets the application will send",
49 MakeUintegerChecker<uint32_t> ())
50 .AddAttribute (
"Interval",
51 "The time to wait between packets",
55 .AddAttribute (
"RemoteAddress",
56 "The destination Address of the outbound packets",
59 MakeAddressChecker ())
60 .AddAttribute (
"RemotePort",
61 "The destination port of the outbound packets",
64 MakeUintegerChecker<uint16_t> ())
65 .AddAttribute (
"PacketSize",
"Size of echo data in outbound packets",
69 MakeUintegerChecker<uint32_t> ())
70 .AddTraceSource (
"Tx",
"A new packet is created and is sent",
196 uint32_t dataSize = fill.size () + 1;
201 m_data =
new uint8_t [dataSize];
205 memcpy (
m_data, fill.c_str (), dataSize);
220 m_data =
new uint8_t [dataSize];
224 memset (
m_data, fill, dataSize);
239 m_data =
new uint8_t [dataSize];
243 if (fillSize >= dataSize)
245 memcpy (
m_data, fill, dataSize);
254 while (filled + fillSize < dataSize)
256 memcpy (&
m_data[filled], fill, fillSize);
263 memcpy (&
m_data[filled], fill, dataSize - filled);
307 p = Create<Packet> (
m_size);
339 while ((packet = socket->
RecvFrom (from)))
static bool IsMatchingType(const Address &address)
If the Address matches the type.
Ipv6Address GetIpv6(void) const
Get the IPv6 address.
keep track of time values and allow control of global simulation resolution
Ipv4Address GetIpv4(void) const
#define NS_LOG_FUNCTION(parameters)
TracedCallback< Ptr< const Packet > > m_txTrace
Callbacks for tracing the packet Tx events.
uint32_t m_dataSize
packet payload size (must be equal to m_size)
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
virtual int Bind6()=0
Allocate a local IPv6 endpoint for this socket.
Ptr< Socket > m_socket
Socket.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
void HandleRead(Ptr< Socket > socket)
Handle a packet reception.
#define NS_ASSERT(condition)
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
uint32_t GetSize(void) const
static void Cancel(const EventId &id)
Set the cancel bit on this event: the event's associated function will not be invoked when it expires...
Callback< R > MakeNullCallback(void)
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
virtual void StopApplication(void)
Application specific shutdown code.
void SetRemote(Ipv4Address ip, uint16_t port)
set the remote address and port
a polymophic address class
void ScheduleTransmit(Time dt)
Schedule the next packet transmission.
The base class for all ns3 applications.
hold objects of type ns3::Time
uint8_t * m_data
packet payload data
Hold an unsigned integer type.
Ptr< Node > GetNode() const
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
This method wraps the creation of sockets that is performed on a given node by a SocketFactory specif...
static bool IsMatchingType(const Address &address)
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
virtual void StartApplication(void)
Application specific startup code.
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
static InetSocketAddress ConvertFrom(const Address &address)
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
uint32_t m_count
Maximum number of packets the application will send.
static TypeId GetTypeId(void)
Get the type ID.
Time m_interval
Packet inter-send time.
static Time Now(void)
Return the "current simulation time".
void SetDataSize(uint32_t dataSize)
Set the data size of the packet (the number of bytes that are sent as data to the server)...
void Send(void)
Send a packet.
#define NS_ASSERT_MSG(condition, message)
Describes an IPv6 address.
Ipv4 addresses are stored in host order in this class.
hold objects of type ns3::Address
EventId m_sendEvent
Event to send the next packet.
an identifier for simulation events.
uint32_t GetDataSize(void) const
Get the number of data bytes that will be sent to the server.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
Address m_peerAddress
Remote peer address.
static bool IsMatchingType(const Address &addr)
If the address match.
uint32_t m_sent
Counter for sent packets.
uint16_t GetPort(void) const
Get the port.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
uint16_t GetPort(void) const
static Ipv4Address ConvertFrom(const Address &address)
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
Read a single packet from the socket and retrieve the sender address.
uint32_t m_size
Size of the sent packet.
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
virtual int Close(void)=0
Close a socket.
bool IsExpired(void) const
This method is syntactic sugar for the ns3::Simulator::isExpired method.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
static bool IsMatchingType(const Address &address)
uint16_t m_peerPort
Remote peer port.
void SetFill(std::string fill)
Set the data fill of the packet (what is sent as data to the server) to the zero-terminated contents ...
static TypeId LookupByName(std::string name)
static Ipv6Address ConvertFrom(const Address &address)
Convert the Address object into an Ipv6Address ones.