aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_validation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/gnunet-service-transport_validation.h')
-rw-r--r--src/transport/gnunet-service-transport_validation.h107
1 files changed, 107 insertions, 0 deletions
diff --git a/src/transport/gnunet-service-transport_validation.h b/src/transport/gnunet-service-transport_validation.h
new file mode 100644
index 000000000..374512e47
--- /dev/null
+++ b/src/transport/gnunet-service-transport_validation.h
@@ -0,0 +1,107 @@
1/*
2 This file is part of GNUnet.
3 (C) 2010,2011 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 transport/gnunet-service-transport_validation.h
23 * @brief plugin management API
24 * @author Christian Grothoff
25 */
26#ifndef GNUNET_SERVICE_TRANSPORT_VALIDATION_H
27#define GNUNET_SERVICE_TRANSPORT_VALIDATION_H
28
29#include "gnunet_statistics_service.h"
30#include "gnunet_transport_validation.h"
31#include "gnunet_util_lib.h"
32
33
34/**
35 *
36 */
37void
38GST_validation_start (void);
39
40
41/**
42 *
43 */
44void
45GST_validation_stop (void);
46
47
48/**
49 *
50 */
51int
52GST_validation_handle_ping (const GNUNET_PeerIdentity *sender,
53 const struct GNUNET_MessageHeader *hdr,
54 const char *plugin_name,
55 const void *sender_address,
56 size_t sender_address_len);
57
58/**
59 *
60 */
61int
62GST_validation_handle_pong (const GNUNET_PeerIdentity *sender,
63 const struct GNUNET_MessageHeader *hdr,
64 const char *plugin_name,
65 const void *sender_address,
66 size_t sender_address_len);
67
68
69/**
70 *
71 */
72void
73GST_validation_handle_hello (const struct GNUNET_MessageHeader *hello);
74
75
76struct GST_ValidationIteratorContext;
77
78/**
79 * @param last_validated_at is FOREVER if the address has not been validated (we're currently checking)
80 * is ZERO if the address was validated a long time ago (from PEERINFO)
81 * is a time in the past if this process validated the address
82 * @param validation_block is FOREVER if the address is for an unsupported plugin (from PEERINFO)
83 * is ZERO if the address is considered valid (no validation needed)
84 * is a time in the future if we're currently denying re-validation
85 */
86typedef void (*GST_ValidationAddressCallback)(void *cls,
87 const GNUNET_PeerIdentity *target,
88 struct GNUNET_TIME_Absolute last_validated_at,
89 struct GNUNET_TIME_Absolute validation_block,
90 const char *plugin_name,
91 const void *plugin_address,
92 size_t plugin_address_len);
93
94struct GST_ValidationIteratorContext *
95GST_validation_get_addresses (const GNUNET_PeerIdentity *target,
96 GST_ValidationAddressCallback cb,
97 void *cb_cls);
98
99
100
101void
102GST_validation_get_addresses_cancel (struct GST_ValidationIteratorContext *ctx);
103
104
105
106#endif
107/* end of file gnunet-service-transport_validation.h */