aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/Makefile.am1
-rw-r--r--src/include/gnunet_sensor_service.h199
-rw-r--r--src/include/gnunet_sensor_util_lib.h520
-rw-r--r--src/include/gnunet_sensordashboard_service.h55
-rw-r--r--src/include/gnunet_transport_address_service.h114
-rw-r--r--src/include/gnunet_transport_hello_service.h4
6 files changed, 117 insertions, 776 deletions
diff --git a/src/include/Makefile.am b/src/include/Makefile.am
index 69ea7c83e..acff7ef3a 100644
--- a/src/include/Makefile.am
+++ b/src/include/Makefile.am
@@ -124,6 +124,7 @@ gnunetinclude_HEADERS = \
124 gnunet_testing_lib.h \ 124 gnunet_testing_lib.h \
125 gnunet_time_lib.h \ 125 gnunet_time_lib.h \
126 gnunet_transport_service.h \ 126 gnunet_transport_service.h \
127 gnunet_transport_address_service.h \
127 gnunet_transport_communication_service.h \ 128 gnunet_transport_communication_service.h \
128 gnunet_transport_core_service.h \ 129 gnunet_transport_core_service.h \
129 gnunet_transport_hello_service.h \ 130 gnunet_transport_hello_service.h \
diff --git a/src/include/gnunet_sensor_service.h b/src/include/gnunet_sensor_service.h
deleted file mode 100644
index 391db58bf..000000000
--- a/src/include/gnunet_sensor_service.h
+++ /dev/null
@@ -1,199 +0,0 @@
1/*
2 This file is part of GNUnet
3 Copyright (C)
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
21/**
22 * @author Omar Tarabai
23 *
24 * @file
25 * API to the sensor service
26 *
27 * @defgroup sensor Sensor service
28 *
29 * @{
30 */
31
32#ifndef GNUNET_SENSOR_SERVICE_H
33#define GNUNET_SENSOR_SERVICE_H
34
35#include "gnunet_common.h"
36#include "gnunet_util_lib.h"
37
38#ifdef __cplusplus
39extern "C"
40{
41#if 0 /* keep Emacsens' auto-indent happy */
42}
43#endif
44#endif
45
46
47/**
48 * Handle to the sensor service.
49 */
50struct GNUNET_SENSOR_Handle;
51
52/**
53 * Context for an iteration request.
54 */
55struct GNUNET_SENSOR_IterateContext;
56
57/**
58 * Context of a force anomaly request
59 */
60struct GNUNET_SENSOR_ForceAnomalyContext;
61
62/**
63 * Structure containing brief info about sensor
64 */
65struct SensorInfoShort
66{
67
68 /*
69 * Sensor name
70 */
71 char *name;
72
73 /*
74 * First part of version number
75 */
76 uint16_t version_major;
77
78 /*
79 * Second part of version number
80 */
81 uint16_t version_minor;
82
83 /*
84 * Sensor description
85 */
86 char *description;
87
88};
89
90/**
91 * Sensor iterate request callback.
92 *
93 * @param cls closure
94 * @param sensor Brief sensor information
95 * @param error message
96 */
97typedef void (*GNUNET_SENSOR_SensorIterateCB) (void *cls,
98 const struct SensorInfoShort *
99 sensor, const char *err_msg);
100
101
102/**
103 * Continuation called with a status result.
104 *
105 * @param cls closure
106 * @param emsg error message, NULL on success
107 */
108typedef void (*GNUNET_SENSOR_Continuation) (void *cls, const char *emsg);
109
110
111/**
112 * Disconnect from the sensor service
113 *
114 * @param h handle to disconnect
115 */
116void
117GNUNET_SENSOR_disconnect (struct GNUNET_SENSOR_Handle *h);
118
119
120/**
121 * Connect to the sensor service.
122 *
123 * @return NULL on error
124 */
125struct GNUNET_SENSOR_Handle *
126GNUNET_SENSOR_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
127
128
129/**
130 * Cancel an iteration request.
131 * This should be called before the iterate callback is called with a NULL value.
132 *
133 * @param ic context of the iterator to cancel
134 */
135void
136GNUNET_SENSOR_iterate_cancel (struct GNUNET_SENSOR_IterateContext
137 *ic);
138
139
140/**
141 * Get one or all sensors loaded by the sensor service.
142 * The callback will be called with each sensor received and once with a NULL
143 * value to signal end of iteration.
144 *
145 * @param h Handle to SENSOR service
146 * @param timeout how long to wait until timing out
147 * @param sensorname Name of the required sensor, NULL to get all
148 * @param callback the function to call for each sensor
149 * @param callback_cls closure for callback
150 * @return iterator context
151 */
152struct GNUNET_SENSOR_IterateContext *
153GNUNET_SENSOR_iterate (struct GNUNET_SENSOR_Handle *h,
154 struct GNUNET_TIME_Relative timeout,
155 const char *sensor_name,
156 GNUNET_SENSOR_SensorIterateCB callback,
157 void *callback_cls);
158
159
160/**
161 * Cancel a force anomaly request.
162 *
163 * @param fa Force anomaly context returned by GNUNET_SENSOR_force_anomaly()
164 */
165void
166GNUNET_SENSOR_force_anomaly_cancel (struct GNUNET_SENSOR_ForceAnomalyContext
167 *fa);
168
169
170/**
171 * Force an anomaly status change on a given sensor. If the sensor reporting
172 * module is running, this will trigger the usual reporting logic, therefore,
173 * please only use this in a test environment.
174 *
175 * Also, if the sensor analysis module is running, it might conflict and cause
176 * undefined behaviour if it detects a real anomaly.
177 *
178 * @param h Service handle
179 * @param sensor_name Sensor name to set the anomaly status
180 * @param anomalous The desired status: #GNUNET_YES / #GNUNET_NO
181 * @param cont Continuation function to be called after the request is sent
182 * @param cont_cls Closure for cont
183 */
184struct GNUNET_SENSOR_ForceAnomalyContext *
185GNUNET_SENSOR_force_anomaly (struct GNUNET_SENSOR_Handle *h, char *sensor_name,
186 int anomalous, GNUNET_SENSOR_Continuation cont,
187 void *cont_cls);
188
189
190#if 0 /* keep Emacsens' auto-indent happy */
191{
192#endif
193#ifdef __cplusplus
194}
195#endif
196
197#endif
198
199/** @} */ /* end of group */
diff --git a/src/include/gnunet_sensor_util_lib.h b/src/include/gnunet_sensor_util_lib.h
deleted file mode 100644
index f4eaad9e8..000000000
--- a/src/include/gnunet_sensor_util_lib.h
+++ /dev/null
@@ -1,520 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C)
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
21/**
22 * @author Omar Tarabai
23 *
24 * @file
25 * Sensor utilities
26 *
27 * @defgroup sensor Sensor Utilities library
28 *
29 * @{
30 */
31
32#ifndef GNUNET_SENSOR_UTIL_LIB_H
33#define GNUNET_SENSOR_UTIL_LIB_H
34
35#ifdef __cplusplus
36extern "C"
37{
38#if 0 /* keep Emacsens' auto-indent happy */
39}
40#endif
41#endif
42
43/**
44 * Structure containing sensor definition
45 */
46struct GNUNET_SENSOR_SensorInfo
47{
48
49 /**
50 * The configuration handle
51 * carrying sensor information
52 */
53 struct GNUNET_CONFIGURATION_Handle *cfg;
54
55 /**
56 * Sensor name
57 */
58 char *name;
59
60 /**
61 * Path to definition file
62 */
63 char *def_file;
64
65 /**
66 * First part of version number
67 */
68 uint16_t version_major;
69
70 /**
71 * Second part of version number
72 */
73 uint16_t version_minor;
74
75 /**
76 * Sensor description
77 */
78 char *description;
79
80 /**
81 * Sensor currently enabled
82 */
83 int enabled;
84
85 /**
86 * Category under which the sensor falls (e.g. tcp, datastore)
87 */
88 char *category;
89
90 /**
91 * When does the sensor become active
92 */
93 struct GNUNET_TIME_Absolute *start_time;
94
95 /**
96 * When does the sensor expire
97 */
98 struct GNUNET_TIME_Absolute *end_time;
99
100 /**
101 * Time interval to collect sensor information (e.g. every 1 min)
102 */
103 struct GNUNET_TIME_Relative interval;
104
105 /**
106 * Lifetime of an information sample after which it is deleted from storage
107 * If not supplied, will default to the interval value
108 */
109 struct GNUNET_TIME_Relative lifetime;
110
111 /**
112 * A set of required peer capabilities for the sensor to collect meaningful information (e.g. ipv6)
113 */
114 char *capabilities;
115
116 /**
117 * Either "gnunet-statistics" or external "process"
118 */
119 char *source;
120
121 /**
122 * Name of the GNUnet service that is the source for the gnunet-statistics entry
123 */
124 char *gnunet_stat_service;
125
126 /**
127 * Name of the gnunet-statistics entry
128 */
129 char *gnunet_stat_name;
130
131 /**
132 * Handle to statistics get request (OR NULL)
133 */
134 struct GNUNET_STATISTICS_GetHandle *gnunet_stat_get_handle;
135
136 /**
137 * Name of the external process to be executed
138 */
139 char *ext_process;
140
141 /**
142 * Arguments to be passed to the external process
143 */
144 char *ext_args;
145
146 /**
147 * Handle to the external process
148 */
149 struct GNUNET_OS_CommandHandle *ext_cmd;
150
151 /**
152 * Did we already receive a value
153 * from the currently running external
154 * proccess ? #GNUNET_YES / #GNUNET_NO
155 */
156 int ext_cmd_value_received;
157
158 /**
159 * The output datatype to be expected
160 */
161 char *expected_datatype;
162
163 /**
164 * Peer-identity of peer running collection point
165 */
166 struct GNUNET_PeerIdentity *collection_point;
167
168 /**
169 * Do we report received sensor values to collection point?
170 * #GNUNET_YES / #GNUNET_NO
171 */
172 int report_values;
173
174 /**
175 * Time interval to send sensor values to collection point (e.g. every 30 mins)
176 */
177 struct GNUNET_TIME_Relative value_reporting_interval;
178
179 /**
180 * Do we report anomalies to collection point?
181 * #GNUNET_YES / #GNUNET_NO
182 */
183 int report_anomalies;
184
185 /**
186 * Execution task (OR NULL)
187 */
188 struct GNUNET_SCHEDULER_Task * execution_task;
189
190 /**
191 * Is the sensor being executed
192 */
193 int running;
194
195};
196
197/**
198 * Anomaly report received and stored by sensor dashboard.
199 * Sensor name and peer id are not included because they are part of the
200 * peerstore key.
201 */
202struct GNUNET_SENSOR_DashboardAnomalyEntry
203{
204
205 /**
206 * New anomaly status
207 */
208 uint16_t anomalous;
209
210 /**
211 * Percentage of neighbors reported the same anomaly
212 */
213 float anomalous_neighbors;
214
215};
216
217GNUNET_NETWORK_STRUCT_BEGIN
218/**
219 * Used to communicate brief information about a sensor.
220 */
221 struct GNUNET_SENSOR_SensorBriefMessage
222{
223
224 /**
225 * GNUNET general message header.
226 */
227 struct GNUNET_MessageHeader header;
228
229 /**
230 * Size of sensor name string, allocated at position 0 after this struct.
231 */
232 uint16_t name_size;
233
234 /**
235 * First part of sensor version number
236 */
237 uint16_t version_major;
238
239 /**
240 * Second part of sensor version number
241 */
242 uint16_t version_minor;
243
244};
245
246/**
247 * Used to communicate full information about a sensor.
248 */
249struct GNUNET_SENSOR_SensorFullMessage
250{
251
252 /**
253 * GNUNET general message header.
254 */
255 struct GNUNET_MessageHeader header;
256
257 /**
258 * Size of sensor name.
259 * Name allocated at position 0 after this struct.
260 */
261 uint16_t sensorname_size;
262
263 /**
264 * Size of the sensor definition file carrying full sensor information.
265 * The file content allocated at position 1 after this struct.
266 */
267 uint16_t sensorfile_size;
268
269 /**
270 * Name of the file (usually script) associated with this sensor.
271 * At the moment we only support having one file per sensor.
272 * The file name is allocated at position 2 after this struct.
273 */
274 uint16_t scriptname_size;
275
276 /**
277 * Size of the file (usually script) associated with this sensor.
278 * The file content is allocated at position 3 after this struct.
279 */
280 uint16_t scriptfile_size;
281
282};
283
284/**
285 * Used to communicate sensor values to
286 * collection points (SENSORDASHBAORD service)
287 */
288struct GNUNET_SENSOR_ValueMessage
289{
290
291 /**
292 * GNUNET general message header
293 */
294 struct GNUNET_MessageHeader header;
295
296 /**
297 * Hash of sensor name
298 */
299 struct GNUNET_HashCode sensorname_hash;
300
301 /**
302 * First part of sensor version number
303 */
304 uint16_t sensorversion_major;
305
306 /**
307 * Second part of sensor version number
308 */
309 uint16_t sensorversion_minor;
310
311 /**
312 * Timestamp of recorded reading
313 */
314 struct GNUNET_TIME_Absolute timestamp;
315
316 /**
317 * Size of sensor value, allocated at poistion 0 after this struct
318 */
319 uint16_t value_size;
320
321};
322
323/**
324 * Message carrying an anomaly status change report
325 */
326struct GNUNET_SENSOR_AnomalyReportMessage
327{
328
329 /**
330 * Hash of sensor name
331 */
332 struct GNUNET_HashCode sensorname_hash;
333
334 /**
335 * First part of sensor version number
336 */
337 uint16_t sensorversion_major;
338
339 /**
340 * Second part of sensor version name
341 */
342 uint16_t sensorversion_minor;
343
344 /**
345 * New anomaly status
346 */
347 uint16_t anomalous;
348
349 /**
350 * Percentage of neighbors reported the same anomaly
351 */
352 float anomalous_neighbors;
353
354};
355
356GNUNET_NETWORK_STRUCT_END
357/**
358 * Given two version numbers as major and minor, compare them.
359 *
360 * @param v1_major First part of first version number
361 * @param v1_minor Second part of first version number
362 * @param v2_major First part of second version number
363 * @param v2_minor Second part of second version number
364 */
365 int
366GNUNET_SENSOR_version_compare (uint16_t v1_major, uint16_t v1_minor,
367 uint16_t v2_major, uint16_t v2_minor);
368
369
370/**
371 * Reads sensor definitions from given sensor directory.
372 *
373 * @param sensordir Path to sensor directory.
374 * @return a multihashmap of loaded sensors
375 */
376struct GNUNET_CONTAINER_MultiHashMap *
377GNUNET_SENSOR_load_all_sensors (char *sensor_dir);
378
379
380/**
381 * Get path to the default directory containing the sensor definition files with
382 * a trailing directory separator.
383 *
384 * @return Default sensor files directory full path
385 */
386char *
387GNUNET_SENSOR_get_default_sensor_dir ();
388
389
390/**
391 * Destroys a group of sensors in a hashmap and the hashmap itself
392 *
393 * @param sensors hashmap containing the sensors
394 */
395void
396GNUNET_SENSOR_destroy_sensors (struct GNUNET_CONTAINER_MultiHashMap *sensors);
397
398
399struct GNUNET_SENSOR_crypto_pow_context;
400
401/**
402 * Block carrying arbitrary data + its proof-of-work + signature
403 */
404struct GNUNET_SENSOR_crypto_pow_block
405{
406
407 /**
408 * Proof-of-work value
409 */
410 uint64_t pow;
411
412 /**
413 * Data signature
414 */
415 struct GNUNET_CRYPTO_EddsaSignature signature;
416
417 /**
418 * Size of the msg component (allocated after this struct)
419 */
420 size_t msg_size;
421
422 /**
423 * Purpose of signing.
424 * Data is allocated after this (timestamp, public_key, msg).
425 */
426 struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
427
428 /**
429 * First part of data - timestamp
430 */
431 struct GNUNET_TIME_Absolute timestamp;
432
433 /**
434 * Second part of data - Public key
435 */
436 struct GNUNET_CRYPTO_EddsaPublicKey public_key;
437
438};
439
440
441/**
442 * Continuation called with a status result.
443 *
444 * @param cls closure
445 * @param pow Proof-of-work value
446 * @param purpose Signed block (size, purpose, data)
447 * @param signature Signature, NULL on error
448 */
449typedef void (*GNUNET_SENSOR_UTIL_pow_callback) (void *cls,
450 struct
451 GNUNET_SENSOR_crypto_pow_block
452 * block);
453
454
455/**
456 * Cancel an operation started by #GNUNET_SENSOR_crypto_pow_sign().
457 * Call only before callback function passed to #GNUNET_SENSOR_crypto_pow_sign()
458 * is called with the result.
459 */
460void
461GNUNET_SENSOR_crypto_pow_sign_cancel (struct GNUNET_SENSOR_crypto_pow_context
462 *cx);
463
464
465/**
466 * Calculate proof-of-work and sign a message.
467 *
468 * @param msg Message to calculate pow and sign
469 * @param msg_size size of msg
470 * @param timestamp Timestamp to add to the message to protect against replay attacks
471 * @param public_key Public key of the origin peer, to protect against redirect attacks
472 * @param private_key Private key of the origin peer to sign the result
473 * @param matching_bits Number of leading zeros required in the result hash
474 * @param callback Callback function to call with the result
475 * @param callback_cls Closure for callback
476 * @return Operation context
477 */
478struct GNUNET_SENSOR_crypto_pow_context *
479GNUNET_SENSOR_crypto_pow_sign (void *msg, size_t msg_size,
480 struct GNUNET_TIME_Absolute *timestamp,
481 struct GNUNET_CRYPTO_EddsaPublicKey *public_key,
482 struct GNUNET_CRYPTO_EddsaPrivateKey
483 *private_key, int matching_bits,
484 GNUNET_SENSOR_UTIL_pow_callback callback,
485 void *callback_cls);
486
487
488/**
489 * Verify that proof-of-work and signature in the given block are valid.
490 * If all valid, a pointer to the payload within the block is set and the size
491 * of the payload is returned.
492 *
493 * **VERY IMPORTANT** : You will still need to verify the timestamp yourself.
494 *
495 * @param block The block received and needs to be verified
496 * @param matching_bits Number of leading zeros in the hash used to verify pow
497 * @param public_key Public key of the peer that sent this block
498 * @param payload Where to store the pointer to the payload
499 * @return Size of the payload
500 */
501size_t
502GNUNET_SENSOR_crypto_verify_pow_sign (struct GNUNET_SENSOR_crypto_pow_block *
503 block, int matching_bits,
504 struct GNUNET_CRYPTO_EddsaPublicKey *
505 public_key, void **payload);
506
507
508#if 0 /* keep Emacsens' auto-indent happy */
509{
510#endif
511#ifdef __cplusplus
512}
513#endif
514
515/* ifndef GNUNET_SENSOR_UTIL_LIB_H */
516#endif
517
518/** @} */ /* end of group */
519
520/* end of gnunet_sensor_util_lib.h */
diff --git a/src/include/gnunet_sensordashboard_service.h b/src/include/gnunet_sensordashboard_service.h
deleted file mode 100644
index ffa24e3b7..000000000
--- a/src/include/gnunet_sensordashboard_service.h
+++ /dev/null
@@ -1,55 +0,0 @@
1/*
2 This file is part of GNUnet
3 Copyright (C)
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
21/**
22 * @author Omar Tarabai
23 *
24 * @file
25 * API to the sensordashboard service
26 *
27 * @defgroup sensordashboard Sensor Dashboard service
28 *
29 * @{
30 */
31#ifndef GNUNET_SENSORDASHBOARD_SERVICE_H
32#define GNUNET_SENSORDASHBOARD_SERVICE_H
33
34#include "gnunet_common.h"
35#include "gnunet_util_lib.h"
36
37#ifdef __cplusplus
38extern "C"
39{
40#if 0 /* keep Emacsens' auto-indent happy */
41}
42#endif
43#endif
44
45
46#if 0 /* keep Emacsens' auto-indent happy */
47{
48#endif
49#ifdef __cplusplus
50}
51#endif
52
53#endif
54
55/** @} */ /* end of group */
diff --git a/src/include/gnunet_transport_address_service.h b/src/include/gnunet_transport_address_service.h
new file mode 100644
index 000000000..86d0a423e
--- /dev/null
+++ b/src/include/gnunet_transport_address_service.h
@@ -0,0 +1,114 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009-2018 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
21/**
22 * @author Christian Grothoff
23 *
24 * @file
25 * Provide addresses to transport for validation
26 *
27 * @defgroup transport TRANSPORT service
28 * Low-level communication with other peers
29 *
30 * @see [Documentation](https://gnunet.org/transport-service)
31 *
32 * @{
33 */
34
35#ifndef GNUNET_TRANSPORT_ADDRESS_SERVICE_H
36#define GNUNET_TRANSPORT_ADDRESS_SERVICE_H
37
38#ifdef __cplusplus
39extern "C"
40{
41#if 0 /* keep Emacsens' auto-indent happy */
42}
43#endif
44#endif
45
46#include "gnunet_util_lib.h"
47#include "gnunet_nt_lib.h"
48
49/**
50 * Version number of the transport address API.
51 */
52#define GNUNET_TRANSPORT_ADDRESS_VERSION 0x00000000
53
54
55/**
56 * Opaque handle to the transport service for communicators.
57 */
58struct GNUNET_TRANSPORT_AddressHandle;
59
60
61/**
62 * Connect to the transport service.
63 *
64 * @param cfg configuration to use
65 * @return NULL on error
66 */
67struct GNUNET_TRANSPORT_AddressHandle *
68GNUNET_TRANSPORT_address_connect (const struct GNUNET_CONFIGURATION_Handle *cfg);
69
70
71/**
72 * Disconnect from the transport service.
73 *
74 * @param ch handle returned from connect
75 */
76void
77GNUNET_TRANSPORT_address_disconnect (struct GNUNET_TRANSPORT_AddressHandle *ch);
78
79
80/**
81 * The client has learned about a possible address for peer @a pid
82 * (i.e. via broadcast, multicast, DHT, ...). The transport service
83 * should consider validating it. Note that the plugin is NOT expected
84 * to have verified the signature, the transport service must decide
85 * whether to check the signature.
86 *
87 * While the notification is sent to @a ch asynchronously, this API
88 * does not return a handle as the delivery of addresses is simply
89 * unreliable, and if @a ch is down, the data provided will simply be
90 * lost.
91 *
92 * @param ch communicator handle
93 * @param raw raw address data
94 * @param raw_size number of bytes in @a raw
95 */
96void
97GNUNET_TRANSPORT_address_try (struct GNUNET_TRANSPORT_CommunicatorHandle *ch,
98 const void *raw,
99 const size_t raw_size);
100
101
102#if 0 /* keep Emacsens' auto-indent happy */
103{
104#endif
105#ifdef __cplusplus
106}
107#endif
108
109/* ifndef GNUNET_TRANSPORT_ADDRESS_SERVICE_H */
110#endif
111
112/** @} */ /* end of group */
113
114/* end of gnunet_transport_address_service.h */
diff --git a/src/include/gnunet_transport_hello_service.h b/src/include/gnunet_transport_hello_service.h
index d568c621e..58a1e9979 100644
--- a/src/include/gnunet_transport_hello_service.h
+++ b/src/include/gnunet_transport_hello_service.h
@@ -11,7 +11,7 @@
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
@@ -107,7 +107,7 @@ enum GNUNET_TRANSPORT_AddressClass
107 * Bitmask for "any" address. 107 * Bitmask for "any" address.
108 */ 108 */
109 GNUNET_TRANSPORT_AC_ANY = 65535 109 GNUNET_TRANSPORT_AC_ANY = 65535
110 110
111}; 111};
112 112
113 113