1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
This file is part of GNUnet.
Copyright (C) 2010,2011 GNUnet e.V.
GNUnet is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published
by the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
GNUnet is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Affero General Public License for more details.
*/
/**
* @file transport/gnunet-service-transport_hello.h
* @brief hello API
* @author Christian Grothoff
*/
#ifndef GNUNET_SERVICE_TRANSPORT_HELLO_H
#define GNUNET_SERVICE_TRANSPORT_HELLO_H
#include "gnunet_statistics_service.h"
#include "gnunet_transport_service.h"
#include "gnunet_util_lib.h"
#include "gnunet_hello_lib.h"
/**
* Signature of a function to call whenever our hello changes.
*
* @param cls closure
* @param hello updated HELLO
*/
typedef void
(*GST_HelloCallback) (void *cls,
const struct GNUNET_MessageHeader *hello);
/**
* Initialize the HELLO module.
*
* @param friend_only use a friend only hello
* @param cb function to call whenever our HELLO changes
* @param cb_cls closure for @a cb
*/
void
GST_hello_start (int friend_only,
GST_HelloCallback cb,
void *cb_cls);
/**
* Shutdown the HELLO module.
*/
void
GST_hello_stop (void);
/**
* Obtain this peers HELLO message.
*
* @return our HELLO message
*/
const struct GNUNET_MessageHeader *
GST_hello_get (void);
/**
* Add or remove an address from this peer's HELLO message.
*
* @param addremove #GNUNET_YES to add, #GNUNET_NO to remove
* @param address address to add or remove
*/
void
GST_hello_modify_addresses (int addremove,
const struct GNUNET_HELLO_Address *address);
/**
* Test if a particular address is one of ours.
*
* @param address the address to test
* @param sig location where to cache PONG signatures for this address [set]
* @param sig_expiration how long until the current 'sig' expires?
* (ZERO if sig was never created) [set]
* @return #GNUNET_YES if this is one of our addresses,
* #GNUNET_NO if not
*/
int
GST_hello_test_address (const struct GNUNET_HELLO_Address *address,
struct GNUNET_CRYPTO_EddsaSignature **sig,
struct GNUNET_TIME_Absolute **sig_expiration);
#endif
/* end of file gnunet-service-transport_hello.h */
|