X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/77bbf3027c4240a2e833209a3a3f186589da8577..218cfca134c987a5f4df49044ba61673883f3aed:/src/surf/ns3/ns3_interface.hpp diff --git a/src/surf/ns3/ns3_interface.hpp b/src/surf/ns3/ns3_interface.hpp index 8b1bc35bbc..a8ea409977 100644 --- a/src/surf/ns3/ns3_interface.hpp +++ b/src/surf/ns3/ns3_interface.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2018. 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. */ @@ -6,6 +6,7 @@ #ifndef NS3_INTERFACE_HPP #define NS3_INTERFACE_HPP +#include "ns3/ptr.h" #include "simgrid/s4u/Host.hpp" namespace simgrid { @@ -13,6 +14,9 @@ namespace surf { class NetworkNS3Action; } } +namespace ns3 { +class Node; +} class NetPointNs3 { public: @@ -20,11 +24,11 @@ public: explicit NetPointNs3(); int node_num; + ns3::Ptr ns3Node_; }; +XBT_PUBLIC(void) ns3_initialize(std::string TcpProtocol); extern "C" { - -XBT_PUBLIC(void) ns3_initialize(const char* TcpProtocol); XBT_PUBLIC(void) ns3_create_flow(sg_host_t src, sg_host_t dst, u_int32_t TotalBytes, simgrid::surf::NetworkNS3Action* action); XBT_PUBLIC(void) ns3_simulator(double maxSeconds);