aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_hello.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-03-28 15:43:23 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-03-28 15:43:23 +0000
commit91140caa33349036934b5b86238c0ec6265e0a13 (patch)
tree7340da5a8452a12588be643e59458f2f0a6891e1 /src/transport/gnunet-service-transport_hello.h
parenta55b2de0863937cfe9c0fcbf41882b81f4c82c9c (diff)
downloadgnunet-91140caa33349036934b5b86238c0ec6265e0a13.tar.gz
gnunet-91140caa33349036934b5b86238c0ec6265e0a13.zip
support for FRIEND_HELLO messages
Diffstat (limited to 'src/transport/gnunet-service-transport_hello.h')
-rw-r--r--src/transport/gnunet-service-transport_hello.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/transport/gnunet-service-transport_hello.h b/src/transport/gnunet-service-transport_hello.h
index 9927408d2..2aefbe300 100644
--- a/src/transport/gnunet-service-transport_hello.h
+++ b/src/transport/gnunet-service-transport_hello.h
@@ -46,11 +46,12 @@ typedef void (*GST_HelloCallback) (void *cls,
46/** 46/**
47 * Initialize the HELLO module. 47 * Initialize the HELLO module.
48 * 48 *
49 * @param friend_only use a friend only hello
49 * @param cb function to call whenever our HELLO changes 50 * @param cb function to call whenever our HELLO changes
50 * @param cb_cls closure for cb 51 * @param cb_cls closure for cb
51 */ 52 */
52void 53void
53GST_hello_start (GST_HelloCallback cb, void *cb_cls); 54GST_hello_start (int friend_only, GST_HelloCallback cb, void *cb_cls);
54 55
55 56
56/** 57/**