X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f24975b15b40cc3c4b7aa618aeee21cb3cc7e235..778f65057da68465382593cd036b6ee59ada54e9:/src/gras/Transport/transport_interface.h diff --git a/src/gras/Transport/transport_interface.h b/src/gras/Transport/transport_interface.h index f2ed8cba9d..b606cf7a1a 100644 --- a/src/gras/Transport/transport_interface.h +++ b/src/gras/Transport/transport_interface.h @@ -12,6 +12,13 @@ #ifndef GRAS_TRP_INTERFACE_H #define GRAS_TRP_INTERFACE_H +#include "portable.h" /* sometimes needed for fd_set */ + +/*** + *** Options + ***/ +extern int gras_opt_trp_nomoredata_on_close; + /*** *** Main user functions ***/ @@ -23,6 +30,8 @@ void gras_trp_flush(gras_socket_t sd); /* Find which socket needs to be read next */ gras_socket_t gras_trp_select(double timeout); +/* Set the peer process name (used by messaging layer) */ +void gras_socket_peer_proc_set(gras_socket_t sock,char*peer_proc); /*** *** Plugin mechanism @@ -89,6 +98,7 @@ typedef struct { unsigned int name_len; xbt_dynar_t sockets; /* all sockets known to this process */ + int myport; /* Port on which I listen myself */ fd_set *fdset; /* SG only elements. In RL, they are part of the OS ;) */ @@ -97,4 +107,7 @@ typedef struct { } s_gras_trp_procdata_t,*gras_trp_procdata_t; +/* Display the content of our socket set (debugging purpose) */ +void gras_trp_socketset_dump(const char *name); + #endif /* GRAS_TRP_INTERFACE_H */