22 #include "ns3/ipv4-address.h"
23 #include "ns3/nstime.h"
24 #include "ns3/inet-socket-address.h"
25 #include "ns3/inet6-socket-address.h"
26 #include "ns3/socket.h"
27 #include "ns3/simulator.h"
28 #include "ns3/socket-factory.h"
29 #include "ns3/packet.h"
30 #include "ns3/uinteger.h"
48 .AddConstructor<UdpClient> ()
49 .AddAttribute (
"MaxPackets",
50 "The maximum number of packets the application will send",
53 MakeUintegerChecker<uint32_t> ())
54 .AddAttribute (
"Interval",
55 "The time to wait between packets",
TimeValue (Seconds (1.0)),
58 .AddAttribute (
"RemoteAddress",
59 "The destination Address of the outbound packets",
62 MakeAddressChecker ())
63 .AddAttribute (
"RemotePort",
"The destination port of the outbound packets",
66 MakeUintegerChecker<uint16_t> ())
67 .AddAttribute (
"PacketSize",
68 "Size of packets generated. The minimum packet size is 12 bytes which is the size of the header carrying the sequence number and the time stamp.",
71 MakeUintegerChecker<uint32_t> (12,1500))
162 std::stringstream peerAddressStringStream;
176 << peerAddressStringStream.str () <<
" Uid: "
177 << p->
GetUid () <<
" Time: "
184 << peerAddressStringStream.str ());
static bool IsMatchingType(const Address &address)
If the Address matches the type.
#define NS_LOG_FUNCTION(parameters)
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
virtual int Bind6()=0
Allocate a local IPv6 endpoint for this socket.
uint32_t m_count
Maximum number of packets the application will send.
virtual void StartApplication(void)
Application specific startup code.
uint64_t GetUid(void) const
A packet is allocated a new uid when it is created empty or with zero-filled payload.
#define NS_ASSERT(condition)
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
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...
Ptr< Socket > m_socket
Socket.
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.
a polymophic address class
uint32_t m_sent
Counter for sent packets.
uint32_t m_size
Size of the sent packet (including the SeqTsHeader)
The base class for all ns3 applications.
hold objects of type ns3::Time
Time m_interval
Packet inter-send time.
Hold an unsigned integer type.
uint16_t m_peerPort
Remote peer port.
Ptr< Node > GetNode() const
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
static TypeId GetTypeId(void)
Get the type ID.
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...
void Send(void)
Send a packet.
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...
Address m_peerAddress
Remote peer address.
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
static Time Now(void)
Return the "current simulation time".
Describes an IPv6 address.
Ipv4 addresses are stored in host order in this class.
hold objects of type ns3::Address
an identifier for simulation events.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
static Ipv4Address ConvertFrom(const Address &address)
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
bool IsExpired(void) const
This method is syntactic sugar for the ns3::Simulator::isExpired method.
void SetRemote(Ipv4Address ip, uint16_t port)
set the remote address and port
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
void AddHeader(const Header &header)
Add header to this packet.
EventId m_sendEvent
Event to send the next packet.
static TypeId LookupByName(std::string name)
static Ipv6Address ConvertFrom(const Address &address)
Convert the Address object into an Ipv6Address ones.