aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_hello.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-service-transport_hello.h')
-rw-r--r--src/transport/gnunet-service-transport_hello.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/transport/gnunet-service-transport_hello.h b/src/transport/gnunet-service-transport_hello.h
index f96b2a84d..6dee4eb07 100644
--- a/src/transport/gnunet-service-transport_hello.h
+++ b/src/transport/gnunet-service-transport_hello.h
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20/** 20/**
21 * @file transport/gnunet-service-transport_hello.h 21 * @file transport/gnunet-service-transport_hello.h
22 * @brief hello API 22 * @brief hello API
@@ -50,16 +50,16 @@ typedef void
50 * @param cb_cls closure for @a cb 50 * @param cb_cls closure for @a cb
51 */ 51 */
52void 52void
53GST_hello_start (int friend_only, 53GST_hello_start(int friend_only,
54 GST_HelloCallback cb, 54 GST_HelloCallback cb,
55 void *cb_cls); 55 void *cb_cls);
56 56
57 57
58/** 58/**
59 * Shutdown the HELLO module. 59 * Shutdown the HELLO module.
60 */ 60 */
61void 61void
62GST_hello_stop (void); 62GST_hello_stop(void);
63 63
64 64
65/** 65/**
@@ -68,7 +68,7 @@ GST_hello_stop (void);
68 * @return our HELLO message 68 * @return our HELLO message
69 */ 69 */
70const struct GNUNET_MessageHeader * 70const struct GNUNET_MessageHeader *
71GST_hello_get (void); 71GST_hello_get(void);
72 72
73 73
74/** 74/**
@@ -78,8 +78,8 @@ GST_hello_get (void);
78 * @param address address to add or remove 78 * @param address address to add or remove
79 */ 79 */
80void 80void
81GST_hello_modify_addresses (int addremove, 81GST_hello_modify_addresses(int addremove,
82 const struct GNUNET_HELLO_Address *address); 82 const struct GNUNET_HELLO_Address *address);
83 83
84 84
85/** 85/**
@@ -93,9 +93,9 @@ GST_hello_modify_addresses (int addremove,
93 * #GNUNET_NO if not 93 * #GNUNET_NO if not
94 */ 94 */
95int 95int
96GST_hello_test_address (const struct GNUNET_HELLO_Address *address, 96GST_hello_test_address(const struct GNUNET_HELLO_Address *address,
97 struct GNUNET_CRYPTO_EddsaSignature **sig, 97 struct GNUNET_CRYPTO_EddsaSignature **sig,
98 struct GNUNET_TIME_Absolute **sig_expiration); 98 struct GNUNET_TIME_Absolute **sig_expiration);
99 99
100 100
101#endif 101#endif