X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3dabc5eb26d7bc8b1e29b3aa52c74368c6bb699..e597737e01b6ac76d6e9ccdf67a85c03c53de7c3:/src/surf/ns3/ns3_interface.h diff --git a/src/surf/ns3/ns3_interface.h b/src/surf/ns3/ns3_interface.h index 76c43d5ea3..d887e44ab3 100644 --- a/src/surf/ns3/ns3_interface.h +++ b/src/surf/ns3/ns3_interface.h @@ -1,9 +1,53 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007-2014. 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 + +#include +#include + +namespace simgrid{ + namespace surf{ + class NetworkNS3Action; + } +} + +typedef struct ns3_node { + int node_num; +} s_ns3_node_t, *ns3_node_t; + +XBT_PUBLIC_DATA(int) NS3_EXTENSION_ID; + +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_host_cluster(const char * id); +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(char * bw,char * lat,const char *id); + +inline +ns3_node_t ns3_find_host(const char* id) +{ + sg_host_t host = sg_host_by_name(id); + if (host == nullptr) + return nullptr; + else + return (ns3_node_t) host->extension(NS3_EXTENSION_ID); +} + +SG_END_DECL() -XBT_PUBLIC(void) ns3_add_host(char * id); +#endif