Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Perf improvement: Change libdata to a set so that we can search for stuff by ID ...
[simgrid.git] / src / gras / Transport / transport_private.h
index 0a8d031..774ed60 100644 (file)
@@ -25,6 +25,7 @@
 #include "gras/Transport/transport_interface.h" /* semi-public API */
 #include "gras/Virtu/virtu_interface.h" /* socketset_get() */
 
+extern int gras_trp_libdata_id; /* our libdata identifier */
 /**
  * s_gras_socket:
  * 
@@ -60,6 +61,7 @@ void gras_trp_socket_new(int incomming,
 typedef void (*gras_trp_setup_t)(gras_trp_plugin_t dst);
 
 void gras_trp_tcp_setup(gras_trp_plugin_t plug);
+void gras_trp_iov_setup(gras_trp_plugin_t plug);
 void gras_trp_file_setup(gras_trp_plugin_t plug);
 void gras_trp_sg_setup(gras_trp_plugin_t plug);
 void gras_trp_buf_setup(gras_trp_plugin_t plug);
@@ -82,17 +84,8 @@ void gras_trp_buf_setup(gras_trp_plugin_t plug);
 
 */
 
-void gras_trp_buf_init_sock(gras_socket_t sock);
+gras_socket_t gras_trp_buf_init_sock(gras_socket_t sock);
 
-
-/* Data exchange over measurement sockets */ /* FIXME: KILLME */
-/*
-void gras_socket_meas_exchange(gras_socket_t peer,
-                                     int sender,
-                                     unsigned int timeout,
-                                     unsigned long int expSize,
-                                     unsigned long int msgSize);
-*/
 xbt_dynar_t gras_socketset_get(void); /* FIXME:KILLME */
 
 #endif /* GRAS_TRP_PRIVATE_H */