X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a8d5cf4199454b5f811043c207d195107743e72..112849de03f2fae9fb4755887bc15322dbe03206:/src/surf/ns3/ns3_simulator.cpp diff --git a/src/surf/ns3/ns3_simulator.cpp b/src/surf/ns3/ns3_simulator.cpp index 1ee844733c..019ef94cb4 100644 --- a/src/surf/ns3/ns3_simulator.cpp +++ b/src/surf/ns3/ns3_simulator.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -57,7 +57,7 @@ static void send_cb(ns3::Ptr sock, uint32_t txSpace) /* While not all is buffered and there remain space in the buffers */ while (flow->buffered_bytes_ < flow->total_bytes_ && sock->GetTxAvailable() > 0) { - // Send at most 1040 bytes (data size in a TCP packet), as NS3 seems to not split correctly by itself + // Send at most 1040 bytes (data size in a TCP packet), as ns-3 seems to not split correctly by itself uint32_t toWrite = std::min({flow->remaining_, sock->GetTxAvailable(), std::uint32_t(1040)}); if (toWrite == 0) { // buffer full XBT_DEBUG("%f: buffer full on flow %p (still %u to go)", ns3::Simulator::Now().GetSeconds(), flow, @@ -90,7 +90,11 @@ static void datasent_cb(ns3::Ptr socket, uint32_t dataSent) static void normalClose_callback(ns3::Ptr socket) { SgFlow* flow = getFlowFromSocket(socket); - XBT_DEBUG("normalClose_cb of F[%p, %p, %u]", flow, flow->action_, flow->total_bytes_); + XBT_DEBUG("normalClose_cb of F[%p, %p] total: %u; sent: %u", flow, flow->action_, flow->total_bytes_, + flow->sent_bytes_); + // xbt_assert(flow->total_bytes_ == flow->sent_bytes_, + // "total_bytes (=%u) is not sent_bytes(=%u)", flow->total_bytes_ , flow->sent_bytes_); + // xbt_assert(flow->remaining_ == 0, "Remaining is not 0 but %u", flow->remaining_); receive_callback(socket); } @@ -98,7 +102,7 @@ static void errorClose_callback(ns3::Ptr socket) { SgFlow* flow = getFlowFromSocket(socket); XBT_DEBUG("errorClose_cb of F[%p, %p, %u]", flow, flow->action_, flow->total_bytes_); - xbt_die("NS3: a socket was closed anormally"); + xbt_die("ns-3: a socket was closed anormally"); } static void succeededConnect_callback(ns3::Ptr socket) @@ -111,7 +115,7 @@ static void failedConnect_callback(ns3::Ptr socket) { SgFlow* mysocket = getFlowFromSocket(socket); XBT_DEBUG("failedConnect_cb of F[%p, %p, %u]", mysocket, mysocket->action_, mysocket->total_bytes_); - xbt_die("NS3: a socket failed to connect"); + xbt_die("ns-3: a socket failed to connect"); } void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number)