Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3: get ride of the IPV4addr global vector
[simgrid.git] / src / surf / ns3 / ns3_simulator.hpp
index 714ebfeaf9fd657c9b5a521d581e4c291b1f1143..3c508aa328d482027ae169d918cad2843601abfa 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2020. 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. */
@@ -21,12 +21,13 @@ public:
   explicit NetPointNs3();
   int node_num;
   ns3::Ptr<ns3::Node> ns3_node_;
+  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_PUBLIC void ns3_add_direct_route(NetPointNs3* src, NetPointNs3* dst, double bw, double lat,
+                                     simgrid::s4u::Link::SharingPolicy policy);
 
 class XBT_PRIVATE SgFlow {
 public: