Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b35d8680e7c494a3fee7d160d519c1db4e843b9d
[simgrid.git] / src / surf / ns3 / ns3_interface.h
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_H
7 #define NS3_INTERFACE_H
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 SG_BEGIN_DECL()
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, double start, u_int32_t TotalBytes,
30                 simgrid::surf::NetworkNS3Action* action);
31 XBT_PUBLIC(void) ns3_simulator(double maxSeconds);
32 XBT_PUBLIC(void*) ns3_add_router(const char* id);
33 XBT_PUBLIC(void) ns3_add_link(NetPointNs3* src, NetPointNs3* dst, char* bw, char* lat);
34 XBT_PUBLIC(void) ns3_add_cluster(const char* id, char* bw, char* lat);
35
36 SG_END_DECL()
37
38 #endif