Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / surf / ns3 / ns3_interface.hpp
1 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef NS3_INTERFACE_HPP
7 #define NS3_INTERFACE_HPP
8
9 #include "simgrid/s4u/Host.hpp"
10
11 namespace simgrid {
12 namespace surf {
13 class NetworkNS3Action;
14 }
15 }
16
17 class NetPointNs3 {
18 public:
19   static simgrid::xbt::Extension<simgrid::kernel::routing::NetPoint, NetPointNs3> EXTENSION_ID;
20
21   explicit NetPointNs3();
22   int node_num;
23 };
24
25 extern "C" {
26
27 XBT_PUBLIC(void) ns3_initialize(const char* TcpProtocol);
28 XBT_PUBLIC(void)
29 ns3_create_flow(sg_host_t src, sg_host_t dst, u_int32_t TotalBytes, simgrid::surf::NetworkNS3Action* action);
30 XBT_PUBLIC(void) ns3_simulator(double maxSeconds);
31 XBT_PUBLIC(void*) ns3_add_router(const char* id);
32 XBT_PUBLIC(void) ns3_add_link(NetPointNs3* src, NetPointNs3* dst, double bw, double lat);
33 XBT_PUBLIC(void) ns3_add_cluster(const char* id, double bw, double lat);
34 }
35
36 #endif