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.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/transport/transport.h b/src/transport/transport.h
index e8c276342..515c178f4 100644
--- a/src/transport/transport.h
+++ b/src/transport/transport.h
@@ -661,6 +661,11 @@ struct GNUNET_TRANSPORT_CommunicatorAvailableMessage
661 */ 661 */
662 struct GNUNET_MessageHeader header; 662 struct GNUNET_MessageHeader header;
663 663
664 /**
665 * NBO encoding of `enum GNUNET_TRANSPORT_CommunicatorCharacteristics`
666 */
667 uint32_t cc;
668
664 /* Followed by the address prefix of the communicator */ 669 /* Followed by the address prefix of the communicator */
665}; 670};
666 671
@@ -810,6 +815,11 @@ struct GNUNET_TRANSPORT_AddQueueMessage
810 */ 815 */
811 uint32_t cs; 816 uint32_t cs;
812 817
818 /**
819 * Hops to the target (DV-only), in NBO.
820 */
821 uint32_t distance;
822
813 /* followed by UTF-8 encoded, 0-terminated human-readable address */ 823 /* followed by UTF-8 encoded, 0-terminated human-readable address */
814}; 824};
815 825