aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_hello.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-02-05 17:24:23 +0000
committerBart Polot <bart@net.in.tum.de>2014-02-05 17:24:23 +0000
commitf0850a16d69e4cedf3354316b4223057dcf4c213 (patch)
treecefc70449e82769cb91aeb6b23230f9675da6af9 /src/mesh/gnunet-service-mesh_hello.h
parent557874e10ad9766f8a7cdb434fba892977134108 (diff)
downloadgnunet-f0850a16d69e4cedf3354316b4223057dcf4c213.tar.gz
gnunet-f0850a16d69e4cedf3354316b4223057dcf4c213.zip
- doxygen, add get_mine
Diffstat (limited to 'src/mesh/gnunet-service-mesh_hello.h')
-rw-r--r--src/mesh/gnunet-service-mesh_hello.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh_hello.h b/src/mesh/gnunet-service-mesh_hello.h
index 866d7abb6..8d8f87072 100644
--- a/src/mesh/gnunet-service-mesh_hello.h
+++ b/src/mesh/gnunet-service-mesh_hello.h
@@ -39,15 +39,30 @@ extern "C"
39 39
40#include "platform.h" 40#include "platform.h"
41#include "gnunet_util_lib.h" 41#include "gnunet_util_lib.h"
42#include "gnunet_hello_lib.h"
42 43
43 44
45/**
46 * Initialize the hello subsystem.
47 *
48 * @param c Configuration.
49 */
44void 50void
45GMH_init (const struct GNUNET_CONFIGURATION_Handle *c); 51GMH_init (const struct GNUNET_CONFIGURATION_Handle *c);
46 52
53/**
54 * Shut down the hello subsystem.
55 */
47void 56void
48GMH_shutdown (); 57GMH_shutdown ();
49 58
50 59/**
60 * Get own hello message.
61 *
62 * @return Own hello message.
63 */
64const struct GNUNET_HELLO_Message *
65GMH_get_mine (void);
51 66
52#if 0 /* keep Emacsens' auto-indent happy */ 67#if 0 /* keep Emacsens' auto-indent happy */
53{ 68{