From: Sree Harsha Totakura Date: Fri, 9 Dec 2011 15:57:56 +0000 (+0000) Subject: fixed missing doc comment X-Git-Tag: initial-import-from-subversion-38251~15673 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=65b40ba69377fbf6ced703e511db7a63761a6b04;p=oweals%2Fgnunet.git fixed missing doc comment --- diff --git a/src/include/gnunet_stream_lib.h b/src/include/gnunet_stream_lib.h index f6935075a..b06f3f564 100644 --- a/src/include/gnunet_stream_lib.h +++ b/src/include/gnunet_stream_lib.h @@ -152,10 +152,13 @@ GNUNET_STREAM_write (const struct GNUNET_STREAM_socket *socket, * * @param socket the socket representing a stream * @param buffer the buffer into which the read data is stored - - * @return + * @param size the number of bytes that are to be read + * @param read_cb the completion callback function which is called after + * attempting to read size number of bytes from the stream + * @param timeout the timeout period + * @param cls the closure */ -size_t +void GNUNET_STREAM_read (const struct GNUNET_STREAM_socket *socket, void *buffer, size_t size,