Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add ns3 level to libraries.
[simgrid.git] / src / surf / ns3 / ns3_interface.h
index 76c43d5..fa1a630 100644 (file)
@@ -4,6 +4,41 @@
 /* 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/misc.h"
+#include "xbt/sysdep.h"
+
+typedef enum {
+       NS3_NETWORK_ELEMENT_NULL = 0,    /* NULL */
+       NS3_NETWORK_ELEMENT_HOST,       /* host type */
+       NS3_NETWORK_ELEMENT_ROUTER,     /* router type */
+       NS3_NETWORK_ELEMENT_AS,         /* AS type */
+} e_ns3_network_element_type_t;
+
+typedef struct ns3_nodes{
+       int node_num;
+       e_ns3_network_element_type_t type;
+       void * data;
+}s_ns3_nodes_t, *ns3_nodes_t;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+XBT_PUBLIC(void *) ns3_add_host(char * id);
+XBT_PUBLIC(void *) ns3_add_router(char * id);
+XBT_PUBLIC(void *) ns3_add_link(char * id);
+XBT_PUBLIC(void *) ns3_add_AS(char * id);
+XBT_PUBLIC(void) ns3_add_cluster(char * id);
+XBT_PUBLIC(void) ns3_add_route(char * src,char * dst);
+XBT_PUBLIC(void) ns3_add_ASroute(char * src,char * dst);
+XBT_PUBLIC(void) free_ns3_elmts(void *);
+
+#ifdef __cplusplus
+}
+#endif
 
-XBT_PUBLIC(void) ns3_add_host(char * id);
+#endif