X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..104ec12984d49e726b38234c5d8ecbfd3732b91e:/include/gras/transport.h diff --git a/include/gras/transport.h b/include/gras/transport.h index 61518741e4..0f8f86864d 100644 --- a/include/gras/transport.h +++ b/include/gras/transport.h @@ -1,10 +1,9 @@ -/* $Id$ */ - /* transport - low level communication (send/receive bunches of bytes) */ /* module's public interface exported to end user. */ -/* Copyright (c) 2004 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. 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. */ @@ -42,6 +41,7 @@ XBT_PUBLIC(gras_socket_t) gras_socket_client_from_string(const char *host); /** \brief Simply create a server socket (to ear from remote hosts speaking to you) */ XBT_PUBLIC(gras_socket_t) gras_socket_server(unsigned short port); XBT_PUBLIC(void) gras_socket_close(gras_socket_t sd); +XBT_PUBLIC(void) gras_socket_close_voidp(void *sock); /** \brief Create a client socket, full interface to all relevant settings */ XBT_PUBLIC(gras_socket_t) gras_socket_client_ext(const char *host, @@ -53,7 +53,7 @@ XBT_PUBLIC(gras_socket_t) gras_socket_server_ext(unsigned short port, unsigned long int bufSize, int measurement); XBT_PUBLIC(gras_socket_t) - gras_socket_server_range(unsigned short minport, unsigned short maxport, + gras_socket_server_range(unsigned short minport, unsigned short maxport, unsigned long int buf_size, int measurement); /* @}*/ @@ -82,9 +82,9 @@ XBT_PUBLIC(int) gras_socket_my_port(gras_socket_t sock); XBT_PUBLIC(int) gras_socket_peer_port(gras_socket_t sock); /** Get the host name of the remote side */ -XBT_PUBLIC(char *) gras_socket_peer_name(gras_socket_t sock); +XBT_PUBLIC(const char *) gras_socket_peer_name(gras_socket_t sock); /** Get the process name of the remote side */ -XBT_PUBLIC(char *) gras_socket_peer_proc(gras_socket_t sock); +XBT_PUBLIC(const char *) gras_socket_peer_proc(gras_socket_t sock); /* @}*/ /** \defgroup GRAS_sock_meas Using measurement sockets @@ -130,4 +130,4 @@ XBT_PUBLIC(gras_socket_t) gras_socket_server_from_file(const char *path); /* @} */ -#endif /* GRAS_TRANSPORT_H */ +#endif /* GRAS_TRANSPORT_H */