#include "ns3/applications-module.h"
#include "ns3/core-module.h"
#include "ns3/internet-module.h"
#include "ns3/ipv4-global-routing-helper.h"
#include "ns3/network-module.h"
#include "ns3/point-to-point-module.h"
#include <fstream>
#include <iostream>
#include <string>
Go to the source code of this file.
Functions | |
static void | CwndTracer (uint32_t oldval, uint32_t newval) |
Congestion window tracker function. More... | |
void | StartFlow (Ptr< Socket > localSocket, Ipv4Address servAddress, uint16_t servPort) |
Start a flow. More... | |
void | WriteUntilBufferFull (Ptr< Socket > localSocket, uint32_t txSpace) |
Write to the buffer, filling it. More... | |
Variables | |
static uint32_t | currentTxBytes = 0 |
The actual number of sent bytes. More... | |
uint8_t | data [writeSize] |
Data to be written. More... | |
static const uint32_t | totalTxBytes = 2000000 |
The number of bytes to send in this simulation. More... | |
static const uint32_t | writeSize = 1040 |
Write size. More... | |
|
static |
Congestion window tracker function.
oldval | Old value. |
newval | New value. |
Definition at line 87 of file tcp-large-transfer.cc.
References NS_LOG_INFO.
void StartFlow | ( | Ptr< Socket > | localSocket, |
Ipv4Address | servAddress, | ||
uint16_t | servPort | ||
) |
Start a flow.
localSocket | The local (sending) socket. |
servAddress | The server address. |
servPort | The server port. |
Definition at line 210 of file tcp-large-transfer.cc.
References ns3::Socket::Connect(), ns3::Socket::GetTxAvailable(), ns3::MakeCallback(), ns3::Simulator::Now(), NS_LOG_LOGIC, ns3::Socket::SetSendCallback(), and WriteUntilBufferFull().
Write to the buffer, filling it.
localSocket | The socket. |
txSpace | The number of bytes to write. |
Definition at line 222 of file tcp-large-transfer.cc.
References ns3::Socket::Close(), currentTxBytes, data, ns3::Socket::GetTxAvailable(), min, ns3::Socket::Send(), totalTxBytes, and writeSize.
Referenced by StartFlow().
|
static |
The actual number of sent bytes.
Definition at line 49 of file tcp-large-transfer.cc.
Referenced by WriteUntilBufferFull().
uint8_t data[writeSize] |
Data to be written.
Definition at line 56 of file tcp-large-transfer.cc.
Referenced by WriteUntilBufferFull().
|
static |
The number of bytes to send in this simulation.
Definition at line 47 of file tcp-large-transfer.cc.
Referenced by WriteUntilBufferFull().
|
static |
Write size.
Definition at line 54 of file tcp-large-transfer.cc.
Referenced by WriteUntilBufferFull().