X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/79b3fb5610812a6434ca06222ce71b65e31555ee..7ecbc1b14472e8aaf2d0764bd4d37859c10592a2:/src/surf/ns3/ns3_simulator.cpp diff --git a/src/surf/ns3/ns3_simulator.cpp b/src/surf/ns3/ns3_simulator.cpp index 019ef94cb4..63a0e8bb9e 100644 --- a/src/surf/ns3/ns3_simulator.cpp +++ b/src/surf/ns3/ns3_simulator.cpp @@ -9,10 +9,15 @@ #include #include +#include +#include +#include +#include #include std::map flow_from_sock; // ns3::sock -> SgFlow +std::map sink_from_sock; // ns3::sock -> ns3::PacketSink static void receive_callback(ns3::Ptr socket); static void datasent_cb(ns3::Ptr socket, uint32_t dataSent); @@ -32,6 +37,12 @@ static SgFlow* getFlowFromSocket(ns3::Ptr socket) return (it == flow_from_sock.end()) ? nullptr : it->second; } +static ns3::ApplicationContainer* getSinkFromSocket(ns3::Ptr socket) +{ + auto it = sink_from_sock.find(transform_socket_ptr(socket)); + return (it == sink_from_sock.end()) ? nullptr : &(it->second); +} + static void receive_callback(ns3::Ptr socket) { SgFlow* flow = getFlowFromSocket(socket); @@ -49,6 +60,7 @@ static void receive_callback(ns3::Ptr socket) static void send_cb(ns3::Ptr sock, uint32_t txSpace) { SgFlow* flow = getFlowFromSocket(sock); + ns3::ApplicationContainer* sink = getSinkFromSocket(sock); XBT_DEBUG("Asked to write on F[%p, total: %u, remain: %u]", flow, flow->total_bytes_, flow->remaining_); if (flow->remaining_ == 0) // all data was already buffered (and socket was already closed) @@ -74,8 +86,18 @@ static void send_cb(ns3::Ptr sock, uint32_t txSpace) flow->remaining_); } - if (flow->buffered_bytes_ >= flow->total_bytes_) + if (flow->buffered_bytes_ >= flow->total_bytes_){ + XBT_DEBUG("Closing Sockets of flow %p", flow); + // Closing the sockets of the receiving application + ns3::Ptr app = ns3::DynamicCast(sink->Get(0)); + ns3::Ptr listening_sock = app->GetListeningSocket(); + listening_sock->Close(); + listening_sock->SetRecvCallback(ns3::MakeNullCallback>()); + for(ns3::Ptr accepted_sock : app->GetAcceptedSockets()) + accepted_sock->Close(); + // Closing the socket of the sender sock->Close(); + } } static void datasent_cb(ns3::Ptr socket, uint32_t dataSent) @@ -127,8 +149,6 @@ void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number // tell the tcp implementation to call send_cb again // if we blocked and new tx buffer space becomes available sock->SetSendCallback(MakeCallback(&send_cb)); - // Notice when the send is over - sock->SetRecvCallback(MakeCallback(&receive_callback)); // Notice when we actually sent some data (mostly for the TRACING module) sock->SetDataSentCallback(MakeCallback(&datasent_cb));