|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
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"
43 .SetGroupName(
"Applications")
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",
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",
72 "ns3::Packet::TracedCallback")
73 .AddTraceSource (
"Rx",
"A packet has been received",
75 "ns3::Packet::TracedCallback")
76 .AddTraceSource (
"TxWithAddresses",
"A new packet is created and is sent",
78 "ns3::Packet::TwoAddressTracedCallback")
79 .AddTraceSource (
"RxWithAddresses",
"A packet has been received",
81 "ns3::Packet::TwoAddressTracedCallback")
223 uint32_t dataSize = fill.size () + 1;
228 m_data =
new uint8_t [dataSize];
232 memcpy (
m_data, fill.c_str (), dataSize);
247 m_data =
new uint8_t [dataSize];
251 memset (
m_data, fill, dataSize);
266 m_data =
new uint8_t [dataSize];
270 if (fillSize >= dataSize)
272 memcpy (
m_data, fill, dataSize);
281 while (filled + fillSize < dataSize)
283 memcpy (&
m_data[filled], fill, fillSize);
290 memcpy (&
m_data[filled], fill, dataSize - filled);
334 p = Create<Packet> (
m_size);
386 while ((packet = socket->
RecvFrom (from)))
a unique identifier for an interface.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
static bool IsMatchingType(const Address &addr)
If the address match.
virtual bool SetAllowBroadcast(bool allowBroadcast)=0
Configure whether broadcast datagram transmissions are allowed.
static bool IsMatchingType(const Address &address)
If the Address matches the type.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
static bool IsMatchingType(const Address &address)
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
static bool IsMatchingType(const Address &address)
An identifier for simulation events.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
uint16_t m_peerPort
Remote peer port.
uint16_t GetPort(void) const
Ptr< const AttributeAccessor > MakeAddressAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
void SetDataSize(uint32_t dataSize)
Set the data size of the packet (the number of bytes that are sent as data to the server).
static Time Now(void)
Return the current simulation virtual time.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void Send(void)
Send a packet.
void HandleRead(Ptr< Socket > socket)
Handle a packet reception.
AttributeValue implementation for Address.
void SetRemote(Address ip, uint16_t port)
set the remote address and port
virtual int Bind6()=0
Allocate a local IPv6 endpoint for this socket.
uint32_t m_size
Size of the sent packet.
virtual void DoDispose(void)
Destructor implementation.
static EventId Schedule(Time const &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static InetSocketAddress ConvertFrom(const Address &address)
Returns an InetSocketAddress which corresponds to the input Address.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
void ScheduleTransmit(Time dt)
Schedule the next packet transmission.
Callback< R, Ts... > MakeNullCallback(void)
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
uint16_t GetPort(void) const
Get the port.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Ptr< const AttributeChecker > MakeAddressChecker(void)
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
void SetRecvCallback(Callback< void, Ptr< Socket > > receivedData)
Notify application when new data is available to be read.
uint8_t * m_data
packet payload data
EventId m_sendEvent
Event to send the next packet.
a polymophic address class
TracedCallback< Ptr< const Packet > > m_txTrace
Callbacks for tracing the packet Tx events.
uint32_t m_count
Maximum number of packets the application will send.
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...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
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.
Ipv4Address GetIpv4(void) const
TracedCallback< Ptr< const Packet > > m_rxTrace
Callbacks for tracing the packet Rx events.
static Ipv6Address ConvertFrom(const Address &address)
Convert the Address object into an Ipv6Address ones.
uint32_t m_sent
Counter for sent packets.
Simulation virtual time values and global simulation resolution.
virtual int Close(void)=0
Close a socket.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
static TypeId GetTypeId(void)
Get the type ID.
Callback< R, Ts... > MakeCallback(R(T::*memPtr)(Ts...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
Ipv6Address GetIpv6(void) const
Get the IPv6 address.
Ptr< Socket > m_socket
Socket.
virtual void StartApplication(void)
Application specific startup code.
virtual void StopApplication(void)
Application specific shutdown code.
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
Time Seconds(double value)
Construct a Time in the indicated unit.
virtual void DoDispose(void)
Destructor implementation.
AttributeValue implementation for Time.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Hold an unsigned integer type.
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_txTraceWithAddresses
Callbacks for tracing the packet Tx events, includes source and destination addresses.
Ptr< Node > GetNode() const
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 SetFill(std::string fill)
Set the data fill of the packet (what is sent as data to the server) to the zero-terminated contents ...
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_rxTraceWithAddresses
Callbacks for tracing the packet Rx events, includes source and destination addresses.
The base class for all ns3 applications.
virtual int GetSockName(Address &address) const =0
Get socket address.
uint32_t GetDataSize(void) const
Get the number of data bytes that will be sent to the server.
static TypeId LookupByName(std::string name)
Get a TypeId by name.
Time m_interval
Packet inter-send time.
uint32_t m_dataSize
packet payload size (must be equal to m_size)
Address m_peerAddress
Remote peer address.
static Ipv4Address ConvertFrom(const Address &address)
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
bool IsExpired(void) const
This method is syntactic sugar for the ns3::Simulator::IsExpired method.