aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_stream_lib.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-03-24 09:05:15 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-03-24 09:05:15 +0000
commita8ab9fa836821cc6c4804cf44fcac5a91df25c45 (patch)
tree024bf6d76e48a33b569aca239820f62d49f7d13e /src/include/gnunet_stream_lib.h
parent2f152dc3bd8c71adbc74e26e762c89345c8eb3db (diff)
downloadgnunet-a8ab9fa836821cc6c4804cf44fcac5a91df25c45.tar.gz
gnunet-a8ab9fa836821cc6c4804cf44fcac5a91df25c45.zip
fixed compile error from r20729
Diffstat (limited to 'src/include/gnunet_stream_lib.h')
-rw-r--r--src/include/gnunet_stream_lib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_stream_lib.h b/src/include/gnunet_stream_lib.h
index 930cc1d3d..78b11d1c5 100644
--- a/src/include/gnunet_stream_lib.h
+++ b/src/include/gnunet_stream_lib.h
@@ -185,10 +185,10 @@ GNUNET_STREAM_listen (const struct GNUNET_CONFIGURATION_Handle *cfg,
185/** 185/**
186 * Closes the listen socket 186 * Closes the listen socket
187 * 187 *
188 * @param socket the listen socket 188 * @param lsocket the listen socket
189 */ 189 */
190void 190void
191GNUNET_STREAM_listen_close (struct GNUNET_STREAM_ListenSocket *socket); 191GNUNET_STREAM_listen_close (struct GNUNET_STREAM_ListenSocket *lsocket);
192 192
193 193
194/** 194/**
@@ -243,7 +243,7 @@ GNUNET_STREAM_write (struct GNUNET_STREAM_Socket *socket,
243 * @param cls the closure from GNUNET_STREAM_read 243 * @param cls the closure from GNUNET_STREAM_read
244 * @param status the status of the stream at the time this function is called 244 * @param status the status of the stream at the time this function is called
245 * @param data traffic from the other side 245 * @param data traffic from the other side
246 * @param size the number of bytes available in data read 246 * @param size the number of bytes available in data read; will be 0 on timeout
247 * @return number of bytes of processed from 'data' (any data remaining should be 247 * @return number of bytes of processed from 'data' (any data remaining should be
248 * given to the next time the read processor is called). 248 * given to the next time the read processor is called).
249 */ 249 */
@@ -275,7 +275,7 @@ GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
275 * @param ioh handle to operation to cancel 275 * @param ioh handle to operation to cancel
276 */ 276 */
277void 277void
278GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *ioh); 278GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *iowh);
279 279
280 280
281/** 281/**
@@ -284,7 +284,7 @@ GNUNET_STREAM_io_write_cancel (struct GNUNET_STREAM_IOWriteHandle *ioh);
284 * @param ioh handle to operation to cancel 284 * @param ioh handle to operation to cancel
285 */ 285 */
286void 286void
287GNUNET_STREAM_io_read_cancel (struct GNUNET_STREAM_IOReadHandle *ioh); 287GNUNET_STREAM_io_read_cancel (struct GNUNET_STREAM_IOReadHandle *iorh);
288 288
289 289
290#if 0 290#if 0