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" 
   31 #include "ns3/boolean.h" 
   32 #include "ns3/string.h" 
   66     .SetGroupName(
"Applications")
 
   68     .AddAttribute (
"RemoteAddress",
 
   69                    "The destination Address of the outbound packets",
 
   73     .AddAttribute (
"RemotePort",
 
   74                    "The destination port of the outbound packets",
 
   77                    MakeUintegerChecker<uint16_t> ())
 
   78     .AddAttribute (
"MaxPacketSize",
 
   79                    "The maximum size of a packet (including the SeqTsHeader, 12 bytes).",
 
   82                    MakeUintegerChecker<uint32_t> ())
 
   83     .AddAttribute (
"TraceFilename",
 
   84                    "Name of file to load a trace from. By default, uses a hardcoded trace.",
 
   88     .AddAttribute (
"TraceLoop",
 
   89                    "Loops through the trace file, starting again once it is over.",
 
  118   if (traceFile != NULL)
 
  189   uint32_t oldIndex = 0;
 
  191   uint32_t prevTime = 0;
 
  194   std::ifstream ifTraceFile;
 
  195   ifTraceFile.open (filename.c_str (), std::ifstream::in);
 
  197   if (!ifTraceFile.good ())
 
  201   while (ifTraceFile.good ())
 
  203       ifTraceFile >> index >> frameType >> time >> size;
 
  204       if (index == oldIndex)
 
  208       if (frameType == 
'B')
 
  222   ifTraceFile.close ();
 
  223   NS_ASSERT_MSG (prevTime != 0, 
"A trace file can not contain B frames only.");
 
  231   uint32_t prevTime = 0;
 
  316       packetSize = size - 12; 
 
  327   std::stringstream addressString;
 
  345                            << addressString.str ());
 
  349       NS_LOG_INFO (
"Error while sending " << size << 
" bytes to " 
  350                                           << addressString.str ());
 
static bool IsMatchingType(const Address &address)
If the Address matches the type. 
 
Ptr< const AttributeChecker > MakeStringChecker(void)
 
void LoadDefaultTrace(void)
Load the default trace. 
 
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
 
AttributeValue implementation for Boolean. 
 
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system. 
 
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. 
 
uint32_t packetSize
Size of the frame. 
 
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
 
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
 
virtual void StartApplication(void)
Application specific startup code. 
 
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name. 
 
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit. 
 
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO. 
 
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate. 
 
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)
 
Address m_peerAddress
Remote peer address. 
 
virtual void StopApplication(void)
Application specific shutdown code. 
 
void SetTraceFile(std::string filename)
Set the trace file to be used by the application. 
 
EventId m_sendEvent
Event to send the next packet. 
 
a polymophic address class 
 
uint32_t timeToSend
Time to send the frame. 
 
NS_ASSERT_MSG(false,"Ipv4AddressGenerator::MaskToIndex(): Impossible")
 
Ptr< const AttributeAccessor > MakeAddressAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
 
static EventId Schedule(Time const &delay, MEM mem_ptr, OBJ obj)
Schedule an event to expire after delay. 
 
The base class for all ns3 applications. 
 
Hold an unsigned integer type. 
 
uint16_t GetMaxPacketSize(void)
Return the maximum packet size. 
 
static struct TraceEntry g_defaultEntries[]
Default trace to send. 
 
Ptr< Node > GetNode() const 
 
char frameType
Frame type (I, P or B) 
 
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...
 
std::vector< struct TraceEntry > m_entries
Entries in the trace to send. 
 
static bool IsMatchingType(const Address &address)
 
static TypeId GetTypeId(void)
Get the type ID. 
 
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host. 
 
virtual void DoDispose(void)
Destructor implementation. 
 
void LoadTrace(std::string filename)
Load a trace file. 
 
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket. 
 
Every class exported by the ns3 library is enclosed in the ns3 namespace. 
 
uint32_t m_sent
Counter for sent packets. 
 
Ptr< Socket > m_socket
Socket. 
 
Ptr< const AttributeChecker > MakeBooleanChecker(void)
 
void SetMaxPacketSize(uint16_t maxPacketSize)
Set the maximum packet size. 
 
void Send(void)
Send a packet. 
 
Ptr< const AttributeChecker > MakeAddressChecker(void)
 
bool m_traceLoop
Loop through the trace file. 
 
Ipv4 addresses are stored in host order in this class. 
 
AttributeValue implementation for Address. 
 
uint16_t m_maxPacketSize
Maximum packet size to send (including the SeqTsHeader) 
 
An identifier for simulation events. 
 
uint16_t m_peerPort
Remote peer port. 
 
void SetRemote(Address ip, uint16_t port)
set the remote address and port 
 
void SetTraceLoop(bool traceLoop)
Set the trace loop flag. 
 
Time Seconds(double value)
Construct a Time in the indicated unit. 
 
uint32_t m_currentEntry
Current entry index. 
 
static bool IsMatchingType(const Address &addr)
If the address match. 
 
static const uint32_t packetSize
 
static Ipv4Address ConvertFrom(const Address &address)
 
virtual void DoDispose(void)
Destructor implementation. 
 
Ptr< const AttributeAccessor > MakeStringAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
 
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host. 
 
void SendPacket(uint32_t size)
Send a packet of a given size. 
 
bool IsExpired(void) const 
This method is syntactic sugar for the ns3::Simulator::IsExpired method. 
 
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
 
a unique identifier for an interface. 
 
TypeId SetParent(TypeId tid)
Set the parent TypeId. 
 
static bool IsMatchingType(const Address &address)
 
void AddHeader(const Header &header)
Add header to this packet. 
 
static TypeId LookupByName(std::string name)
Get a TypeId by name. 
 
static Ipv6Address ConvertFrom(const Address &address)
Convert the Address object into an Ipv6Address ones.