X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6..9bcd28fb0c558fbaa23ee46416f96baef5279045:/src/surf/ns3/ns3_simulator.hpp diff --git a/src/surf/ns3/ns3_simulator.hpp b/src/surf/ns3/ns3_simulator.hpp index ca2056d44d..f4cd203afa 100644 --- a/src/surf/ns3/ns3_simulator.hpp +++ b/src/surf/ns3/ns3_simulator.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2022. 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. */ @@ -9,24 +9,25 @@ #include "simgrid/s4u/Host.hpp" #include "src/surf/network_ns3.hpp" +#include "ns3/wifi-module.h" #include #include #include -class NetPointNs3 { +class XBT_PRIVATE NetPointNs3 { public: static simgrid::xbt::Extension EXTENSION_ID; explicit NetPointNs3(); - int node_num; - ns3::Ptr ns3_node_; + ns3::Ptr ns3_node_ = ns3::CreateObject(0); + std::string ipv4_address_; }; -XBT_PUBLIC void ns3_initialize(std::string TcpProtocol); -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); +XBT_PRIVATE void ns3_simulator(double max_seconds); +XBT_PRIVATE void ns3_add_direct_route(const simgrid::kernel::routing::NetPoint* src, + const simgrid::kernel::routing::NetPoint* dst, double bw, double lat, + simgrid::s4u::Link::SharingPolicy policy); class XBT_PRIVATE SgFlow { public: @@ -35,13 +36,13 @@ public: // private: std::uint32_t buffered_bytes_ = 0; std::uint32_t sent_bytes_ = 0; - std::uint32_t remaining_; std::uint32_t total_bytes_; + std::uint32_t remaining_; bool finished_ = false; simgrid::kernel::resource::NetworkNS3Action* action_; }; -void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number); +XBT_PRIVATE void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number); static inline std::string transform_socket_ptr(ns3::Ptr local_socket) {