GNUnet 0.26.2-114-g7c6b613e3
 
Loading...
Searching...
No Matches
gnunet-service-cadet.h
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2001-2017 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
14
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/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
27#ifndef GNUNET_SERVICE_CADET_H
28#define GNUNET_SERVICE_CADET_H
29
30#include "gnunet_pils_service.h"
31#include "gnunet_util_lib.h"
32#include "cadet_protocol.h"
33
37struct CadetClient;
38
43struct CadetPeer;
44
49struct CadetTunnel;
50
55
62struct CadetPeerPath;
63
68{
73
78
82 struct CadetPeer *peer;
83
88
93
101 int score;
102};
103
108{
113
118
123
127 struct CadetTunnel *t;
128
133
137 uint32_t throughput;
138
143};
144
145
150{
154 struct CadetClient *c;
155
160
165};
166
167
172struct CadetConnection;
173
182struct CadetRoute;
183
188struct CadetChannel;
189
193extern const struct GNUNET_CONFIGURATION_Handle *cfg;
194
198extern struct GNUNET_STATISTICS_Handle *stats;
199
204
208extern struct GNUNET_PILS_Handle *pils;
209
215
221
228
233
237extern unsigned long long ratchet_messages;
238
243
248
252extern int shutting_down;
253
257extern unsigned long long drop_percent;
258
259
266void
268 struct GNUNET_MQ_Envelope *env);
269
270
278void
281 struct CadetChannel *ch);
282
290void
291GSC_drop_loose_channel (const struct GNUNET_HashCode *h_port,
292 struct CadetChannel *ch);
293
294
307GSC_bind (struct CadetClient *c,
308 struct CadetChannel *ch,
309 struct CadetPeer *dest,
310 const struct GNUNET_HashCode *port,
311 uint32_t options);
312
313
320const char *
321GSC_2s (struct CadetClient *c);
322
323
324#endif
struct GNUNET_GETOPT_CommandLineOption options[]
Definition 002.c:5
struct GNUNET_MQ_Envelope * env
Definition 005.c:1
P2P messages used by CADET.
static uint16_t port
Port number.
Definition gnunet-bcd.c:146
static struct GNUNET_CADET_Channel * ch
Channel handle.
struct GNUNET_CONTAINER_MultiPeerMap * peers
Map from PIDs to struct CadetPeer entries.
struct GNUNET_CONTAINER_MultiShortmap * connections
Map from struct GNUNET_CADET_ConnectionTunnelIdentifier hash codes to struct CadetConnection objects.
void GSC_handle_remote_channel_destroy(struct CadetClient *c, struct GNUNET_CADET_ClientChannelNumber ccn, struct CadetChannel *ch)
A channel was destroyed by the other peer.
unsigned long long drop_percent
Set to non-zero values to create random drops to test retransmissions.
struct GNUNET_STATISTICS_Handle * stats
Handle to the statistics service.
const struct GNUNET_CONFIGURATION_Handle * cfg
Handle to our configuration.
struct GNUNET_TIME_Relative keepalive_period
How frequently do we send KEEPALIVE messages on idle connections?
void GSC_send_to_client(struct CadetClient *c, struct GNUNET_MQ_Envelope *env)
Send a message to a client.
int shutting_down
Signal that shutdown is happening: prevent recovery measures.
unsigned long long ratchet_messages
How many messages are needed to trigger an AXOLOTL ratchet advance.
struct GNUNET_TRANSPORT_ApplicationHandle * transport
Handle to Transport service.
struct GNUNET_CONTAINER_MultiHashMap * open_ports
All ports clients of this peer have opened.
struct GNUNET_CADET_ClientChannelNumber GSC_bind(struct CadetClient *c, struct CadetChannel *ch, struct CadetPeer *dest, const struct GNUNET_HashCode *port, uint32_t options)
Bind incoming channel to this client, and notify client about incoming connection.
struct GNUNET_CONTAINER_MultiHashMap * loose_channels
Map from ports to channels where the ports were closed at the time we got the inbound connection.
struct GNUNET_TIME_Relative ratchet_time
How long until we trigger a ratched advance due to time.
struct GNUNET_PILS_Handle * pils
Handle to Pils service.
void GSC_drop_loose_channel(const struct GNUNET_HashCode *h_port, struct CadetChannel *ch)
A client that created a loose channel that was not bound to a port disconnected, drop it from the loo...
const char * GSC_2s(struct CadetClient *c)
Return identifier for a client as a string.
Struct containing all information regarding a channel to a remote client.
Struct containing information about a client of the service.
Low-level connection to a destination.
Entry in a peer path.
struct CadetPeerPathEntry * next
DLL of paths where the same peer is at the same offset.
int score
Path's historic score up to this point.
struct CadetPeer * peer
The peer at this offset of the path.
struct CadetConnection * cc
Connection using this path, or NULL for none.
struct CadetPeerPathEntry * prev
DLL of paths where the same peer is at the same offset.
struct CadetPeerPath * path
Path this entry belongs to.
Information regarding a possible path to reach a peer.
Struct containing all information regarding a given peer.
Entry in list of connections used by tunnel, with metadata.
struct CadetTConnection * prev
Prev in DLL.
struct CadetTConnection * next
Next in DLL.
struct CadetConnection * cc
Connection handle.
struct GNUNET_TIME_Absolute created
Creation time, to keep oldest connection alive.
int is_ready
Is the connection currently ready for transmission?
uint32_t throughput
Connection throughput, to keep fastest connection alive.
struct CadetTunnel * t
Tunnel this connection belongs to.
Struct used to save messages in a non-ready tunnel to send once connected.
Struct containing all information regarding a tunnel to a peer.
Number uniquely identifying a channel of a client.
Definition cadet.h:101
Internal representation of the hash map.
Internal representation of the hash map.
Internal representation of the hash map.
A 512-bit hashcode.
A handle for the PILS service.
Definition pils_api.c:82
Handle for the service.
Time for absolute times used by GNUnet, in microseconds.
Time for relative time used by GNUnet, in microseconds.
Handle to the TRANSPORT subsystem for application management.
Port opened by a client.
struct GNUNET_HashCode port
Port number.
struct GNUNET_HashCode h_port
Port hashed with our PID (matches incoming OPEN messages).
struct CadetClient * c
Client that opened the port.