26 #include "ns3/address.h"
27 #include "ns3/inet-socket-address.h"
28 #include "ns3/inet6-socket-address.h"
29 #include "ns3/packet-socket-address.h"
31 #include "ns3/nstime.h"
32 #include "ns3/data-rate.h"
33 #include "ns3/random-variable-stream.h"
34 #include "ns3/socket.h"
35 #include "ns3/simulator.h"
36 #include "ns3/socket-factory.h"
37 #include "ns3/packet.h"
38 #include "ns3/uinteger.h"
39 #include "ns3/trace-source-accessor.h"
41 #include "ns3/udp-socket-factory.h"
42 #include "ns3/string.h"
43 #include "ns3/pointer.h"
56 .AddConstructor<OnOffApplication> ()
57 .AddAttribute (
"DataRate",
"The data rate in on state.",
60 MakeDataRateChecker ())
61 .AddAttribute (
"PacketSize",
"The size of packets sent in on state",
64 MakeUintegerChecker<uint32_t> (1))
65 .AddAttribute (
"Remote",
"The address of the destination",
68 MakeAddressChecker ())
69 .AddAttribute (
"OnTime",
"A RandomVariableStream used to pick the duration of the 'On' state.",
70 StringValue (
"ns3::ConstantRandomVariable[Constant=1.0]"),
72 MakePointerChecker <RandomVariableStream>())
73 .AddAttribute (
"OffTime",
"A RandomVariableStream used to pick the duration of the 'Off' state.",
74 StringValue (
"ns3::ConstantRandomVariable[Constant=1.0]"),
76 MakePointerChecker <RandomVariableStream>())
77 .AddAttribute (
"MaxBytes",
78 "The total number of bytes to send. Once these bytes are sent, "
79 "no packet is sent again, even in on state. The value zero means "
80 "that there is no limit.",
83 MakeUintegerChecker<uint32_t> ())
84 .AddAttribute (
"Protocol",
"The type of protocol to use.",
88 .AddTraceSource (
"Tx",
"A new packet is created and is sent",
99 m_lastStartTime (Seconds (0)),
188 NS_LOG_WARN (
"OnOffApplication found null socket to close in StopApplication");
233 Time nextTime (Seconds (bits /
276 <<
"s on-off application sent "
277 << packet->GetSize () <<
" bytes to "
285 <<
"s on-off application sent "
286 << packet->GetSize () <<
" bytes to "
static TypeId GetTypeId(void)
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)
void SetStream(int64_t stream)
Specifies the stream number for this RNG stream.
virtual void StartApplication(void)
Application specific startup code.
virtual int Bind6()=0
Allocate a local IPv6 endpoint for this socket.
hold variables of type string
virtual bool SetAllowBroadcast(bool allowBroadcast)=0
Configure whether broadcast datagram transmissions are allowed.
void ScheduleStartEvent()
#define NS_ASSERT(condition)
static bool IsMatchingType(const Address &address)
virtual int ShutdownRecv(void)=0
static void Cancel(const EventId &id)
bool IsRunning(void) const
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
virtual double GetValue(void)=0
Returns a random double from the underlying distribution.
Class for representing data rates.
virtual void DoDispose(void)
The base class for all ns3 applications.
Hold an unsigned integer type.
Ptr< RandomVariableStream > m_onTime
NS_OBJECT_ENSURE_REGISTERED(AntennaModel)
Ptr< Node > GetNode() const
hold objects of type ns3::TypeId
Ptr< Socket > GetSocket(void) const
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
int64_t AssignStreams(int64_t stream)
#define NS_LOG_LOGIC(msg)
Ptr< RandomVariableStream > m_offTime
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
virtual void DoDispose(void)
TracedCallback< Ptr< const Packet > > m_txTrace
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)
uint64_t GetBitRate() const
void SetMaxBytes(uint32_t maxBytes)
void ConnectionSucceeded(Ptr< Socket > socket)
virtual ~OnOffApplication()
hold objects of type ns3::Address
static TypeId GetTypeId(void)
hold objects of type ns3::DataRate
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
static bool IsMatchingType(const Address &addr)
If the address match.
uint16_t GetPort(void) const
Get the port.
void ConnectionFailed(Ptr< Socket > socket)
NS_LOG_COMPONENT_DEFINE("OnOffApplication")
uint16_t GetPort(void) const
void SetConnectCallback(Callback< void, Ptr< Socket > > connectionSucceeded, Callback< void, Ptr< Socket > > connectionFailed)
Specify callbacks to allow the caller to determine if the connection succeeds of fails.
virtual void StopApplication(void)
Application specific shutdown code.
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
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
static bool IsMatchingType(const Address &address)
int64x64_t To(enum Unit timeUnit) const