aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_stream_lib.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2011-12-09 15:57:56 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2011-12-09 15:57:56 +0000
commit65b40ba69377fbf6ced703e511db7a63761a6b04 (patch)
treedc024a55672f435cf91292eaa419afc0b260567e /src/include/gnunet_stream_lib.h
parent04ae1bc73842a2aad9ca73d9abb6875a58cbdd40 (diff)
downloadgnunet-65b40ba69377fbf6ced703e511db7a63761a6b04.tar.gz
gnunet-65b40ba69377fbf6ced703e511db7a63761a6b04.zip
fixed missing doc comment
Diffstat (limited to 'src/include/gnunet_stream_lib.h')
-rw-r--r--src/include/gnunet_stream_lib.h9
1 files 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,
152 * 152 *
153 * @param socket the socket representing a stream 153 * @param socket the socket representing a stream
154 * @param buffer the buffer into which the read data is stored 154 * @param buffer the buffer into which the read data is stored
155 155 * @param size the number of bytes that are to be read
156 * @return 156 * @param read_cb the completion callback function which is called after
157 * attempting to read size number of bytes from the stream
158 * @param timeout the timeout period
159 * @param cls the closure
157 */ 160 */
158size_t 161void
159GNUNET_STREAM_read (const struct GNUNET_STREAM_socket *socket, 162GNUNET_STREAM_read (const struct GNUNET_STREAM_socket *socket,
160 void *buffer, 163 void *buffer,
161 size_t size, 164 size_t size,