aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2011-07-11 09:40:00 +0000
committerNathan S. Evans <evans@in.tum.de>2011-07-11 09:40:00 +0000
commit39c000246382f7772c3c6bb4c889373da5df5a9d (patch)
treef771bebf089ecd05baab8416347ca5f411b16c6e /src/transport/transport.h
parent1e463296e3635a4a82584a3c4e205e096ce53ad1 (diff)
downloadgnunet-39c000246382f7772c3c6bb4c889373da5df5a9d.tar.gz
gnunet-39c000246382f7772c3c6bb4c889373da5df5a9d.zip
tool to list transport level connections
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 */