aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorBruno Cabral <bcabral@uw.edu>2014-08-31 14:58:43 +0000
committerBruno Cabral <bcabral@uw.edu>2014-08-31 14:58:43 +0000
commit937abe2f277d163e19b626fc37955d91e5126140 (patch)
treefba7ca533d8cd828e9064ebb9927e0184aa26e0a /src/include
parent940c02e4903e957db965991c58be73e3400e31b0 (diff)
downloadgnunet-937abe2f277d163e19b626fc37955d91e5126140.tar.gz
gnunet-937abe2f277d163e19b626fc37955d91e5126140.zip
Fix infinite loop ( grothoff, please check !)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_cadet_service.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/gnunet_cadet_service.h b/src/include/gnunet_cadet_service.h
index 14826c40b..a4ac42eb8 100644
--- a/src/include/gnunet_cadet_service.h
+++ b/src/include/gnunet_cadet_service.h
@@ -348,6 +348,18 @@ void
348GNUNET_CADET_notify_transmit_ready_cancel (struct GNUNET_CADET_TransmitHandle 348GNUNET_CADET_notify_transmit_ready_cancel (struct GNUNET_CADET_TransmitHandle
349 *th); 349 *th);
350 350
351
352/**
353 * Cancel only the notify without cleaning the structs to a futher call to channel destroy
354 *
355 * @param th handle that was returned by "notify_transmit_ready".
356 */
357void
358GNUNET_CADET_cancel_notify (struct GNUNET_CADET_TransmitHandle
359 *th);
360
361
362
351 363
352/** 364/**
353 * Indicate readiness to receive the next message on a channel. 365 * Indicate readiness to receive the next message on a channel.