aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport.h')
-rw-r--r--src/transport/transport.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/transport/transport.h b/src/transport/transport.h
index 133eb6887..89e50b73f 100644
--- a/src/transport/transport.h
+++ b/src/transport/transport.h
@@ -335,6 +335,23 @@ struct PeerAddressLookupMessage
335}; 335};
336 336
337/** 337/**
338 * Message from the library to the transport service
339 * asking for human readable addresses known for a peer.
340 */
341struct AddressIterateMessage
342{
343 /**
344 * Type will be GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_ITERATE
345 */
346 struct GNUNET_MessageHeader header;
347
348 /**
349 * timeout to give up.
350 */
351 struct GNUNET_TIME_AbsoluteNBO timeout;
352};
353
354/**
338 * Change in blacklisting (either request or notification, 355 * Change in blacklisting (either request or notification,
339 * depending on which direction it is going). 356 * depending on which direction it is going).
340 */ 357 */