X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d5c59d2c517e9d811871e580abac9513e6e949e1..c6c517af9e561a831a14051c92abcb217b1fe2bb:/src/gras/Transport/transport_interface.h diff --git a/src/gras/Transport/transport_interface.h b/src/gras/Transport/transport_interface.h index d24e43aa70..d23f05e14a 100644 --- a/src/gras/Transport/transport_interface.h +++ b/src/gras/Transport/transport_interface.h @@ -42,18 +42,6 @@ void gras_trp_exit(void); /* A plugin type */ typedef struct gras_trp_plugin_ gras_trp_plugin_t; - -/** - * e_gras_trp_plugin: - * - * Caracterize each possible transport plugin - */ -typedef enum e_gras_trp_plugin { - e_gras_trp_plugin_undefined = 0, - - e_gras_trp_plugin_tcp -} gras_trp_plugin_type_t; - /* A plugin type */ struct gras_trp_plugin_ { char *name; @@ -63,9 +51,11 @@ struct gras_trp_plugin_ { gras_error_t (*socket_client)(gras_trp_plugin_t *self, const char *host, unsigned short port, + int raw, /* OUT */ gras_socket_t *dst); gras_error_t (*socket_server)(gras_trp_plugin_t *self, unsigned short port, + int raw, /* OUT */ gras_socket_t *dst); gras_error_t (*socket_accept)(gras_socket_t *sock,