X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6fb2a3317c632f4ec9ada7e08b120849c7d551d8..247d96de592ac1fcd59411032c6528f238764516:/src/surf/ns3/ns3_simulator.h diff --git a/src/surf/ns3/ns3_simulator.h b/src/surf/ns3/ns3_simulator.h index 88dda1d6bb..2d5c431dbb 100644 --- a/src/surf/ns3/ns3_simulator.h +++ b/src/surf/ns3/ns3_simulator.h @@ -10,12 +10,28 @@ #ifdef __cplusplus #include "ns3/core-module.h" -#include "ns3/helper-module.h" -#include "ns3/simulator-module.h" -#include "ns3/node-module.h" -#include "ns3/helper-module.h" -#include "ns3/global-routing-module.h" -#include "ns3/tcp-socket-factory.h" +#include "my-point-to-point-helper.h" + +#ifdef _NS3_3_10 + /*NS3 3.10*/ + #include "ns3/helper-module.h" + #include "ns3/simulator-module.h" + #include "ns3/node-module.h" + #include "ns3/helper-module.h" + #include "ns3/global-routing-module.h" + #include "ns3/tcp-socket-factory.h" +#else + /*NS3 3.12*/ + #include "ns3/node.h" + #include "ns3/global-route-manager.h" + #include "ns3/csma-helper.h" + #include "ns3/internet-stack-helper.h" + #include "ns3/ipv4-address-helper.h" + #include "ns3/point-to-point-helper.h" + #include "ns3/packet-sink-helper.h" + #include "ns3/inet-socket-address.h" + #include "ns3/tcp-socket-factory.h" +#endif using namespace ns3; using namespace std; @@ -25,7 +41,6 @@ struct MySocket{ uint32_t sentBytes; uint32_t remaining; uint32_t totalBytes; - uint32_t last_amount_sent; char finished; void* action; }; @@ -36,22 +51,20 @@ class NS3Sim { private: public: - NS3Sim(); - ~NS3Sim(); - void create_flow_NS3(Ptr src, - Ptr dst, - uint16_t port_number, - double start, - const char *addr, - uint32_t TotalBytes, - void * action); - void simulator_stop(double min); - void simulator_start(void); - void* get_action_from_socket(void *socket); - double get_remains_from_socket(void *socket); - double get_last_amount_sent_from_socket(void *socket); - void reset_last_amount_sent_from_socket(void *socket); - char get_finished(void *socket); + NS3Sim(); + ~NS3Sim(); + void create_flow_NS3(Ptr src, + Ptr dst, + uint16_t port_number, + double start, + const char *addr, + uint32_t TotalBytes, + void * action); + void simulator_start(double min); + void* get_action_from_socket(void *socket); + double get_remains_from_socket(void *socket); + double get_sent_from_socket(void *socket); + char get_finished(void *socket); }; #endif /* __cplusplus */