X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c82adb6ec2917d3ec0657dab7e5d1d053759accd..3d7871258a01dc77c95cd4618034b8fd89bbd8d9:/src/surf/ns3/ns3_simulator.h?ds=sidebyside diff --git a/src/surf/ns3/ns3_simulator.h b/src/surf/ns3/ns3_simulator.h index 804863851b..2847a6037f 100644 --- a/src/surf/ns3/ns3_simulator.h +++ b/src/surf/ns3/ns3_simulator.h @@ -11,35 +11,35 @@ #include "ns3_interface.h" -#include #include +#include #include #include -#include #include +#include #include class SgFlow { public: - SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action * action); + SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action* action); -//private: + // private: std::uint32_t bufferedBytes_ = 0; - std::uint32_t sentBytes_ = 0; + std::uint32_t sentBytes_ = 0; std::uint32_t remaining_; std::uint32_t totalBytes_; bool finished_ = false; simgrid::surf::NetworkNS3Action* action_; }; -void StartFlow(ns3::Ptr sock, const char *to, uint16_t port_number); +void StartFlow(ns3::Ptr sock, const char* to, uint16_t port_number); -static inline const char *transformSocketPtr (ns3::Ptr localSocket) +static inline const char* transformSocketPtr(ns3::Ptr localSocket) { static char key[24]; std::stringstream sstream; - sstream << localSocket ; - snprintf(key,24,"%s",sstream.str().c_str()); + sstream << localSocket; + snprintf(key, 24, "%s", sstream.str().c_str()); return key; }