aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_transport_hello_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-07-30 16:51:51 +0000
committerChristian Grothoff <christian@grothoff.org>2016-07-30 16:51:51 +0000
commitb54a66f94d833dbe98eb0dd9e236a3d7bba3ce20 (patch)
tree7e9231517434bfd97a616a07eecdb932fdc691f8 /src/include/gnunet_transport_hello_service.h
parent811dc4cbbbcd87f4856ebd88fa3b777bb5fe1f89 (diff)
downloadgnunet-b54a66f94d833dbe98eb0dd9e236a3d7bba3ce20.tar.gz
gnunet-b54a66f94d833dbe98eb0dd9e236a3d7bba3ce20.zip
implementing new TRANSPORT_hello_get API
Diffstat (limited to 'src/include/gnunet_transport_hello_service.h')
-rw-r--r--src/include/gnunet_transport_hello_service.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_transport_hello_service.h b/src/include/gnunet_transport_hello_service.h
index 8fc558d3f..8573613ac 100644
--- a/src/include/gnunet_transport_hello_service.h
+++ b/src/include/gnunet_transport_hello_service.h
@@ -66,7 +66,7 @@ typedef void
66/** 66/**
67 * Handle to cancel a #GNUNET_TRANSPORT_hello_get() operation. 67 * Handle to cancel a #GNUNET_TRANSPORT_hello_get() operation.
68 */ 68 */
69struct GNUNET_TRANSPORT_GetHelloHandle; 69struct GNUNET_TRANSPORT_HelloGetHandle;
70 70
71 71
72/** 72/**
@@ -79,8 +79,8 @@ struct GNUNET_TRANSPORT_GetHelloHandle;
79 * @param rec_cls closure for @a rec 79 * @param rec_cls closure for @a rec
80 * @return handle to cancel the operation 80 * @return handle to cancel the operation
81 */ 81 */
82struct GNUNET_TRANSPORT_GetHelloHandle * 82struct GNUNET_TRANSPORT_HelloGetHandle *
83GNUNET_TRANSPORT_hello_get (struct GNUNET_CONFIGURATION_Handle *cfg, 83GNUNET_TRANSPORT_hello_get (const struct GNUNET_CONFIGURATION_Handle *cfg,
84 enum GNUNET_ATS_Network_Type nt, 84 enum GNUNET_ATS_Network_Type nt,
85 GNUNET_TRANSPORT_HelloUpdateCallback rec, 85 GNUNET_TRANSPORT_HelloUpdateCallback rec,
86 void *rec_cls); 86 void *rec_cls);
@@ -92,7 +92,7 @@ GNUNET_TRANSPORT_hello_get (struct GNUNET_CONFIGURATION_Handle *cfg,
92 * @param ghh handle to cancel 92 * @param ghh handle to cancel
93 */ 93 */
94void 94void
95GNUNET_TRANSPORT_hello_get_cancel (struct GNUNET_TRANSPORT_GetHelloHandle *ghh); 95GNUNET_TRANSPORT_hello_get_cancel (struct GNUNET_TRANSPORT_HelloGetHandle *ghh);
96 96
97 97
98/** 98/**