aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_hello.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-02-04 12:36:31 +0000
committerBart Polot <bart@net.in.tum.de>2014-02-04 12:36:31 +0000
commit0066f847206caa73b90b01a49d88e408934530dd (patch)
treec9a228498b9000dae84821427d3c47a1058ea669 /src/mesh/gnunet-service-mesh_hello.h
parentd8ec84381eb2a365ef40af64d8c88f039ddd1095 (diff)
downloadgnunet-0066f847206caa73b90b01a49d88e408934530dd.tar.gz
gnunet-0066f847206caa73b90b01a49d88e408934530dd.zip
- add hello subsystem to get hellos for known peers
Diffstat (limited to 'src/mesh/gnunet-service-mesh_hello.h')
-rw-r--r--src/mesh/gnunet-service-mesh_hello.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh_hello.h b/src/mesh/gnunet-service-mesh_hello.h
new file mode 100644
index 000000000..866d7abb6
--- /dev/null
+++ b/src/mesh/gnunet-service-mesh_hello.h
@@ -0,0 +1,61 @@
1/*
2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file mesh/gnunet-service-mesh_hello.h
23 * @brief mesh service; dealing with hello messages
24 * @author Bartlomiej Polot
25 *
26 * All functions in this file should use the prefix GMH (Gnunet Mesh Hello)
27 */
28
29#ifndef GNUNET_SERVICE_MESH_HELLO_H
30#define GNUNET_SERVICE_MESH_HELLO_H
31
32#ifdef __cplusplus
33extern "C"
34{
35#if 0 /* keep Emacsens' auto-indent happy */
36}
37#endif
38#endif
39
40#include "platform.h"
41#include "gnunet_util_lib.h"
42
43
44void
45GMH_init (const struct GNUNET_CONFIGURATION_Handle *c);
46
47void
48GMH_shutdown ();
49
50
51
52#if 0 /* keep Emacsens' auto-indent happy */
53{
54#endif
55#ifdef __cplusplus
56}
57#endif
58
59/* ifndef GNUNET_MESH_SERVICE_HELLO_H */
60#endif
61/* end of gnunet-mesh-service_hello.h */