aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_stream_lib.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-12-11 11:21:31 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-12-11 11:21:31 +0000
commitc70d10589c4189a255066032bdd1d72204641247 (patch)
tree4f50f90fb12cab8825f0d3aec975ba591b614886 /src/include/gnunet_stream_lib.h
parent77e9e4a935bc9109365afebf00a4d88a694973ed (diff)
downloadgnunet-c70d10589c4189a255066032bdd1d72204641247.tar.gz
gnunet-c70d10589c4189a255066032bdd1d72204641247.zip
- doxygen
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 8a1f22f47..0acede1ac 100644
--- a/src/include/gnunet_stream_lib.h
+++ b/src/include/gnunet_stream_lib.h
@@ -354,7 +354,7 @@ typedef size_t (*GNUNET_STREAM_DataProcessor) (void *cls,
354 * @param timeout the timeout period 354 * @param timeout the timeout period
355 * @param proc function to call with data (once only) 355 * @param proc function to call with data (once only)
356 * @param proc_cls the closure for proc 356 * @param proc_cls the closure for proc
357 * @return handle to cancel the operation; NULL is returned if: the stream has 357 * @return handle to cancel the operation; NULL is returned if the stream has
358 * been shutdown for this type of opeartion (the DataProcessor is 358 * been shutdown for this type of opeartion (the DataProcessor is
359 * immediately called with GNUNET_STREAM_SHUTDOWN as status) 359 * immediately called with GNUNET_STREAM_SHUTDOWN as status)
360 */ 360 */
@@ -380,19 +380,19 @@ GNUNET_STREAM_read (struct GNUNET_STREAM_Socket *socket,
380 * used before shutting down transmission from our side or before closing the 380 * used before shutting down transmission from our side or before closing the
381 * socket. 381 * socket.
382 * 382 *
383 * @param ioh handle to operation to cancel 383 * @param wh write operation handle to cancel
384 */ 384 */
385void 385void
386GNUNET_STREAM_write_cancel (struct GNUNET_STREAM_WriteHandle *iowh); 386GNUNET_STREAM_write_cancel (struct GNUNET_STREAM_WriteHandle *wh);
387 387
388 388
389/** 389/**
390 * Cancel pending read operation. 390 * Cancel pending read operation.
391 * 391 *
392 * @param ioh handle to operation to cancel 392 * @param rh read operation handle to cancel
393 */ 393 */
394void 394void
395GNUNET_STREAM_read_cancel (struct GNUNET_STREAM_ReadHandle *iorh); 395GNUNET_STREAM_read_cancel (struct GNUNET_STREAM_ReadHandle *rh);
396 396
397 397
398#if 0 398#if 0