X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b359452181186ead17245b11847e8193a152bfc3..0c9ba8fe774965e25baca201356dd6da90f9bb5d:/src/surf/ns3/ns3_interface.h diff --git a/src/surf/ns3/ns3_interface.h b/src/surf/ns3/ns3_interface.h index 187deb594d..e667adec78 100644 --- a/src/surf/ns3/ns3_interface.h +++ b/src/surf/ns3/ns3_interface.h @@ -1,52 +1,38 @@ -/* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2017. 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. */ -#ifndef _NS3_INTERFACE_H -#define _NS3_INTERFACE_H - -#include "xbt/log.h" -#include "xbt/dynar.h" -#include "xbt/misc.h" -#include "xbt/sysdep.h" -#include +#ifndef NS3_INTERFACE_H +#define NS3_INTERFACE_H #include -#include -namespace simgrid{ - namespace surf{ - class NetworkNS3Action; - } +namespace simgrid { +namespace surf { +class NetworkNS3Action; +} } -class HostNs3 { +class NetPointNs3 { public: - static simgrid::xbt::Extension EXTENSION_ID; + static simgrid::xbt::Extension EXTENSION_ID; - explicit HostNs3(); + explicit NetPointNs3(); int node_num; }; SG_BEGIN_DECL() -XBT_PUBLIC(void) ns3_initialize(const char* TcpProtocol); -XBT_PUBLIC(void) ns3_create_flow(const char* a,const char *b,double start,u_int32_t TotalBytes,simgrid::surf::NetworkNS3Action * action); -XBT_PUBLIC(void) ns3_simulator(double maxSeconds); -XBT_PUBLIC(void *) ns3_add_router(const char * id); -XBT_PUBLIC(void) ns3_add_link(int src, int dst, char * bw,char * lat); +XBT_PUBLIC(void) ns3_initialize(const char* TcpProtocol); +XBT_PUBLIC(void) +ns3_create_flow(sg_host_t src, sg_host_t dst, double start, u_int32_t TotalBytes, + simgrid::surf::NetworkNS3Action* action); +XBT_PUBLIC(void) ns3_simulator(double maxSeconds); +XBT_PUBLIC(void*) ns3_add_router(const char* id); +XBT_PUBLIC(void) ns3_add_link(int src, int dst, char* bw, char* lat); XBT_PUBLIC(void) ns3_add_cluster(const char* id, char* bw, char* lat); -inline HostNs3* ns3_find_host(const char* id) -{ - sg_host_t host = sg_host_by_name(id); - if (host == nullptr) - return nullptr; - else - return host->extension(); -} - SG_END_DECL() #endif