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.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/transport/transport.h b/src/transport/transport.h
index 5384e7395..4d1d370d9 100644
--- a/src/transport/transport.h
+++ b/src/transport/transport.h
@@ -322,6 +322,7 @@ struct AddressLookupMessage
322 followed by the 0-terminated name of the transport */ 322 followed by the 0-terminated name of the transport */
323}; 323};
324 324
325
325/** 326/**
326 * Message from the library to the transport service 327 * Message from the library to the transport service
327 * asking for human readable addresses known for a peer. 328 * asking for human readable addresses known for a peer.
@@ -334,9 +335,14 @@ struct PeerAddressLookupMessage
334 struct GNUNET_MessageHeader header; 335 struct GNUNET_MessageHeader header;
335 336
336 /** 337 /**
337 * timeout to give up. 338 * For alignment.
338 */ 339 */
339 struct GNUNET_TIME_AbsoluteNBO timeout; 340 uint32_t reserved;
341
342 /**
343 * timeout to give up. FIXME: remove in the future.
344 */
345 struct GNUNET_TIME_RelativeNBO timeout;
340 346
341 /** 347 /**
342 * The identity of the peer to look up. 348 * The identity of the peer to look up.
@@ -344,6 +350,7 @@ struct PeerAddressLookupMessage
344 struct GNUNET_PeerIdentity peer; 350 struct GNUNET_PeerIdentity peer;
345}; 351};
346 352
353
347/** 354/**
348 * Message from the library to the transport service 355 * Message from the library to the transport service
349 * asking for human readable addresses known for a peer. 356 * asking for human readable addresses known for a peer.
@@ -356,11 +363,17 @@ struct AddressIterateMessage
356 struct GNUNET_MessageHeader header; 363 struct GNUNET_MessageHeader header;
357 364
358 /** 365 /**
359 * timeout to give up. 366 * For alignment.
367 */
368 uint32_t reserved;
369
370 /**
371 * timeout to give up. FIXME: remove in the future
360 */ 372 */
361 struct GNUNET_TIME_AbsoluteNBO timeout; 373 struct GNUNET_TIME_AbsoluteNBO timeout;
362}; 374};
363 375
376
364/** 377/**
365 * Change in blacklisting (either request or notification, 378 * Change in blacklisting (either request or notification,
366 * depending on which direction it is going). 379 * depending on which direction it is going).