Fix broken build
[oweals/gnunet.git] / src / core / gnunet-service-core_kx.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010, 2011 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file core/gnunet-service-core_kx.h
23  * @brief code for managing the key exchange (SET_KEY, PING, PONG) with other peers
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_SERVICE_CORE_KX_H
27 #define GNUNET_SERVICE_CORE_KX_H
28
29 #include "gnunet_util_lib.h"
30 #include "gnunet_transport_service.h"
31
32
33 /**
34  * Information about the status of a key exchange with another peer.
35  */
36 struct GSC_KeyExchangeInfo;
37
38
39 /**
40  * Encrypt and transmit a message with the given payload.
41  *
42  * @param kx key exchange context
43  * @param payload payload of the message
44  * @param payload_size number of bytes in 'payload'
45  */
46 void
47 GSC_KX_encrypt_and_transmit (struct GSC_KeyExchangeInfo *kx,
48                              const void *payload,
49                              size_t payload_size);
50
51
52 /**
53  * Initialize KX subsystem.
54  *
55  * @param pk private key to use for the peer
56  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
57  */
58 int
59 GSC_KX_init (struct GNUNET_CRYPTO_EddsaPrivateKey *pk);
60
61
62 /**
63  * Shutdown KX subsystem.
64  */
65 void
66 GSC_KX_done (void);
67
68
69 /**
70  * Check if the given neighbour has excess bandwidth available.
71  *
72  * @param target neighbour to check
73  * @return #GNUNET_YES if excess bandwidth is available, #GNUNET_NO if not
74  */
75 int
76 GSC_NEIGHBOURS_check_excess_bandwidth (const struct GSC_KeyExchangeInfo *target);
77
78
79 /**
80  * Check how many messages are queued for the given neighbour.
81  *
82  * @param target neighbour to check
83  * @return number of items in the message queue
84  */
85 unsigned int
86 GSC_NEIGHBOURS_get_queue_length (const struct GSC_KeyExchangeInfo *target);
87
88
89 /**
90  * Handle #GNUNET_MESSAGE_TYPE_CORE_MONITOR_PEERS request.  For this
91  * request type, the client does not have to have transmitted an INIT
92  * request.  All current peers are returned, regardless of which
93  * message types they accept.
94  *
95  * @param mq message queue to add for monitoring
96  */
97 void
98 GSC_KX_handle_client_monitor_peers (struct GNUNET_MQ_Handle *mq);
99
100
101 #endif
102 /* end of gnunet-service-core_kx.h */