8#include "ns3/address-utils.h" 
   10#include "ns3/nstime.h" 
   11#include "ns3/packet.h" 
   12#include "ns3/simulator.h" 
   13#include "ns3/socket-factory.h" 
   14#include "ns3/socket.h" 
   15#include "ns3/trace-source-accessor.h" 
   16#include "ns3/uinteger.h" 
   29        TypeId(
"ns3::UdpEchoClient")
 
   31            .SetGroupName(
"Applications")
 
   35                "The maximum number of packets the application will send (zero means infinite)",
 
   39            .AddAttribute(
"Interval",
 
   40                          "The time to wait between packets",
 
   47                "The destination Address of the outbound packets",
 
   55                "Replaced by Remote in ns-3.44.")
 
   57            .AddAttribute(
"RemotePort",
 
   58                          "The destination port of the outbound packets",
 
   63                          "Replaced by Remote in ns-3.44.")
 
   66                "Size of echo data in outbound packets",
 
   71                            "A packet has been received",
 
   73                            "ns3::Packet::TracedCallback")
 
   74            .AddTraceSource(
"TxWithAddresses",
 
   75                            "A new packet is created and is sent",
 
   77                            "ns3::Packet::TwoAddressTracedCallback")
 
   78            .AddTraceSource(
"RxWithAddresses",
 
   79                            "A packet has been received",
 
   81                            "ns3::Packet::TwoAddressTracedCallback");
 
 
  199    uint32_t dataSize = fill.size() + 1;
 
  204        m_data = 
new uint8_t[dataSize];
 
  208    memcpy(
m_data, fill.c_str(), dataSize);
 
 
  223        m_data = 
new uint8_t[dataSize];
 
  227    memset(
m_data, fill, dataSize);
 
 
  242        m_data = 
new uint8_t[dataSize];
 
  246    if (fillSize >= dataSize)
 
  248        memcpy(
m_data, fill, dataSize);
 
  257    while (filled + fillSize < dataSize)
 
  259        memcpy(&
m_data[filled], fill, fillSize);
 
  266    memcpy(&
m_data[filled], fill, dataSize - filled);
 
 
  298                      "UdpEchoClient::Send(): m_size and m_dataSize inconsistent");
 
  314    m_socket->GetSockName(localAddress);
 
 
  346    while (
auto packet = socket->RecvFrom(from))
 
  351                                   << packet->GetSize() << 
" bytes from " 
  358                                   << packet->GetSize() << 
" bytes from " 
  363        socket->GetSockName(localAddress);
 
 
a polymophic address class
 
AttributeValue implementation for Address.
 
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
 
uint16_t GetPort() const
Get the port.
 
static bool IsMatchingType(const Address &addr)
If the address match.
 
static bool IsMatchingType(const Address &address)
 
static InetSocketAddress ConvertFrom(const Address &address)
Returns an InetSocketAddress which corresponds to the input Address.
 
static bool IsMatchingType(const Address &address)
 
static bool IsMatchingType(const Address &address)
If the Address matches the type.
 
Smart pointer class similar to boost::intrusive_ptr.
 
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
 
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...
 
static Time Now()
Return the current simulation virtual time.
 
TypeId m_protocolTid
Protocol TypeId value.
 
SourceApplication(bool allowPacketSocket=true)
Constructor.
 
Ptr< Socket > m_socket
Socket.
 
TracedCallback< Ptr< const Packet > > m_txTrace
Traced Callback: transmitted packets.
 
Address m_peer
Peer address.
 
Simulation virtual time values and global simulation resolution.
 
AttributeValue implementation for Time.
 
a unique identifier for an interface.
 
static TypeId LookupByName(std::string name)
Get a TypeId by name.
 
TypeId SetParent(TypeId tid)
Set the parent TypeId.
 
@ DEPRECATED
Attribute or trace source is deprecated; user is warned.
 
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 ...
 
void CancelEvents() override
Cancel all pending events.
 
Time m_interval
Packet inter-send time.
 
void Send()
Send a packet.
 
void HandleRead(Ptr< Socket > socket)
Handle a packet reception.
 
static constexpr uint16_t DEFAULT_PORT
default port
 
~UdpEchoClient() override
 
EventId m_sendEvent
Event to send the next packet.
 
uint32_t m_size
Size of the sent packet.
 
void SetRemote(const Address &ip, uint16_t port)
set the remote address and port
 
uint32_t GetDataSize() const
Get the number of data bytes that will be sent to the server.
 
uint16_t GetPort() const
Get the remote port (temporary function until deprecated attributes are removed).
 
uint32_t m_count
Maximum number of packets the application will send.
 
std::optional< uint16_t > m_peerPort
Remote peer port (deprecated) // NS_DEPRECATED_3_44.
 
static TypeId GetTypeId()
Get the type ID.
 
uint8_t * m_data
packet payload data
 
void SetPort(uint16_t port)
Set the remote port (temporary function until deprecated attributes are removed).
 
uint32_t m_sent
Counter for sent packets.
 
void ScheduleTransmit(Time dt)
Schedule the next packet transmission.
 
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_txTraceWithAddresses
Callbacks for tracing the packet Tx events, includes source and destination addresses.
 
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_rxTraceWithAddresses
Callbacks for tracing the packet Rx events, includes source and destination addresses.
 
void SetDataSize(uint32_t dataSize)
Set the data size of the packet (the number of bytes that are sent as data to the server).
 
TracedCallback< Ptr< const Packet > > m_rxTrace
Callbacks for tracing the packet Rx events.
 
Address GetRemote() const
Get the remote address (temporary function until deprecated attributes are removed).
 
uint32_t m_dataSize
packet payload size (must be equal to m_size)
 
void DoStartApplication() override
Application specific startup code for child subclasses.
 
Hold an unsigned integer type.
 
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
 
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
 
Ptr< const AttributeChecker > MakeAddressChecker()
 
Ptr< const AttributeAccessor > MakeAddressAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
 
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
 
Ptr< const AttributeChecker > MakeTimeChecker()
Helper to make an unbounded Time checker.
 
Ptr< const AttributeChecker > MakeUintegerChecker()
 
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
 
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
 
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
 
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
 
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
 
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
 
Time Seconds(double value)
Construct a Time in the indicated unit.
 
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
 
Address ConvertToSocketAddress(const Address &address, uint16_t port)
Convert IPv4/IPv6 address with port to a socket address.
 
Every class exported by the ns3 library is enclosed in the ns3 namespace.
 
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...