X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d805d3e2b617db73c7c28cf4e4683cd9e6b928d4..6db6413133c36dd1a9e798d35e75afd7ceb63001:/src/surf/ns3/ns3_simulator.hpp diff --git a/src/surf/ns3/ns3_simulator.hpp b/src/surf/ns3/ns3_simulator.hpp index 93ea87cff2..714ebfeaf9 100644 --- a/src/surf/ns3/ns3_simulator.hpp +++ b/src/surf/ns3/ns3_simulator.hpp @@ -20,33 +20,33 @@ public: explicit NetPointNs3(); int node_num; - ns3::Ptr ns3Node_; + ns3::Ptr ns3_node_; }; XBT_PUBLIC void ns3_initialize(std::string TcpProtocol); -XBT_PUBLIC void ns3_simulator(double maxSeconds); +XBT_PUBLIC void ns3_simulator(double max_seconds); XBT_PUBLIC void ns3_add_link(NetPointNs3* src, NetPointNs3* dst, double bw, double lat); XBT_PUBLIC void ns3_add_cluster(const char* id, double bw, double lat); class XBT_PRIVATE SgFlow { public: - SgFlow(uint32_t totalBytes, simgrid::kernel::resource::NetworkNS3Action* action); + SgFlow(uint32_t total_bytes, simgrid::kernel::resource::NetworkNS3Action* action); // private: - std::uint32_t bufferedBytes_ = 0; - std::uint32_t sentBytes_ = 0; + std::uint32_t buffered_bytes_ = 0; + std::uint32_t sent_bytes_ = 0; std::uint32_t remaining_; - std::uint32_t totalBytes_; + std::uint32_t total_bytes_; bool finished_ = false; simgrid::kernel::resource::NetworkNS3Action* action_; }; -void StartFlow(ns3::Ptr sock, const char* to, uint16_t port_number); +void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number); -static inline std::string transformSocketPtr(ns3::Ptr localSocket) +static inline std::string transform_socket_ptr(ns3::Ptr local_socket) { std::stringstream sstream; - sstream << localSocket; + sstream << local_socket; return sstream.str(); }