21 #include "ns3/core-module.h"
22 #include "ns3/network-module.h"
23 #include "ns3/internet-module.h"
24 #include "ns3/point-to-point-module.h"
25 #include "ns3/applications-module.h"
34 NS_LOG_INFO (
"Client has established a connection to the server.");
40 NS_LOG_INFO (
"Server generated a main object of " << size <<
" bytes.");
46 NS_LOG_INFO (
"Server generated an embedded object of " << size <<
" bytes.");
70 NS_LOG_INFO (
"Client has successfully received a main object of "
75 NS_LOG_INFO (
"Client failed to parse a main object. ");
88 NS_LOG_INFO (
"Client has successfully received an embedded object of "
93 NS_LOG_INFO (
"Client failed to parse an embedded object. ");
98 main (
int argc,
char *argv[])
100 double simTimeSec = 300;
102 cmd.AddValue (
"SimulationTime",
"Length of simulation in seconds.", simTimeSec);
103 cmd.Parse (argc, argv);
127 address.SetBase (
"10.1.1.0",
"255.255.255.0");
141 httpServer->TraceConnectWithoutContext (
"ConnectionEstablished",
149 httpServer->GetAttribute (
"Variables", varPtr);
151 httpVariables->SetMainObjectSizeMean (102400);
152 httpVariables->SetMainObjectSizeStdDev (40960);
a polymophic address class
holds a vector of ns3::Application pointers.
Parse command-line arguments.
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
Ipv4 addresses are stored in host order in this class.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
Ptr< Packet > Copy(void) const
performs a COW copy of the packet.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
Build a set of PointToPointNetDevice objects.
Hold objects of type Ptr<T>.
Smart pointer class similar to boost::intrusive_ptr.
static void Destroy(void)
Execute the events scheduled with ScheduleDestroy().
static void Run(void)
Run the simulation.
Hold variables of type string.
Helper to make it easier to instantiate an ThreeGppHttpClient on a set of nodes.
Model application which simulates the traffic of a web browser.
Helper to make it easier to instantiate an ThreeGppHttpServer on a set of nodes.
Model application which simulates the traffic of a web server.
Container of various random variables to assist in generating web browsing traffic pattern.
static void SetResolution(enum Unit resolution)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Time Seconds(double value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
@ LOG_PREFIX_TIME
Prefix all trace prints with simulation time.
@ LOG_INFO
Informational messages (e.g., banners).
void LogComponentEnable(char const *name, enum LogLevel level)
Enable the logging output associated with that log component.
void LogComponentEnableAll(enum LogLevel level)
Enable the logging output for all registered log components.
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...
void MainObjectGenerated(uint32_t size)
void ServerTx(Ptr< const Packet > packet)
void ClientRx(Ptr< const Packet > packet, const Address &address)
void ServerConnectionEstablished(Ptr< const ThreeGppHttpServer >, Ptr< Socket >)
void ClientEmbeddedObjectReceived(Ptr< const ThreeGppHttpClient >, Ptr< const Packet > packet)
void ClientMainObjectReceived(Ptr< const ThreeGppHttpClient >, Ptr< const Packet > packet)
void EmbeddedObjectGenerated(uint32_t size)