From 65b40ba69377fbf6ced703e511db7a63761a6b04 Mon Sep 17 00:00:00 2001 From: Sree Harsha Totakura Date: Fri, 9 Dec 2011 15:57:56 +0000 Subject: [PATCH] fixed missing doc comment --- src/include/gnunet_stream_lib.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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, -- 2.25.1