From 8a5a52c31203af9e7eb66dc1c1c8f4e6b14d0b70 Mon Sep 17 00:00:00 2001 From: Lucas Schnorr Date: Fri, 2 Sep 2011 17:00:52 +0200 Subject: [PATCH] [NS3] adding bufferedBytes variable to MySocket structure (replaces old sentBytes) - also fix on header indentation (removing tabs and replace by two spaces) --- src/surf/ns3/ns3_simulator.cc | 7 ++++--- src/surf/ns3/ns3_simulator.h | 13 +++++++------ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/surf/ns3/ns3_simulator.cc b/src/surf/ns3/ns3_simulator.cc index 258c43d6bd..c3911fac35 100644 --- a/src/surf/ns3/ns3_simulator.cc +++ b/src/surf/ns3/ns3_simulator.cc @@ -61,6 +61,7 @@ void NS3Sim::create_flow_NS3( mysocket->TotalBytes = TotalBytes; mysocket->remaining = TotalBytes; mysocket->last_amount_sent = 0; + mysocket->bufferedBytes = 0; mysocket->sentBytes = 0; mysocket->finished = 0; mysocket->action = action; @@ -126,7 +127,7 @@ static void send_callback(Ptr localSocket, uint32_t txSpace){ InetSocketAddress iaddr = InetSocketAddress::ConvertFrom (addr); MySocket* mysocket = (MySocket*)xbt_dict_get_or_null(dict_socket,(char*)&localSocket); uint32_t totalBytes = mysocket->TotalBytes; - while ((mysocket->sentBytes) < totalBytes && localSocket->GetTxAvailable () > 0){ + while ((mysocket->bufferedBytes) < totalBytes && localSocket->GetTxAvailable () > 0){ uint32_t toWrite = min ((mysocket->remaining), writeSize); toWrite = min (toWrite, localSocket->GetTxAvailable ()); int amountSent = localSocket->Send (&data[0], toWrite, 0); @@ -135,11 +136,11 @@ static void send_callback(Ptr localSocket, uint32_t txSpace){ return; (mysocket->last_amount_sent) += amountSent; - (mysocket->sentBytes) += amountSent; + (mysocket->bufferedBytes) += amountSent; (mysocket->remaining) -= amountSent; //cout << "[" << Simulator::Now ().GetSeconds() << "] " << "Send one packet, remaining "<< mysocket->remaining << " bytes!" << endl; } - if ((mysocket->sentBytes) >= totalBytes){ + if ((mysocket->bufferedBytes) >= TotalBytes){ localSocket->Close(); } diff --git a/src/surf/ns3/ns3_simulator.h b/src/surf/ns3/ns3_simulator.h index bd08513cb2..484a49fb66 100644 --- a/src/surf/ns3/ns3_simulator.h +++ b/src/surf/ns3/ns3_simulator.h @@ -21,12 +21,13 @@ using namespace ns3; using namespace std; struct MySocket{ - uint32_t sentBytes; - uint32_t remaining; - uint32_t TotalBytes; - uint32_t last_amount_sent; - char finished; - void* action; + uint32_t bufferedBytes; + uint32_t sentBytes; + uint32_t remaining; + uint32_t TotalBytes; + uint32_t last_amount_sent; + char finished; + void* action; }; //Simulator s; -- 2.20.1