aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/transport/plugin_transport_udp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_udp.h b/src/transport/plugin_transport_udp.h
index fe46bf85b..e168a534c 100644
--- a/src/transport/plugin_transport_udp.h
+++ b/src/transport/plugin_transport_udp.h
@@ -57,6 +57,11 @@ GNUNET_NETWORK_STRUCT_BEGIN
57 */ 57 */
58struct IPv4UdpAddress 58struct IPv4UdpAddress
59{ 59{
60 /**
61 * Optional options and flags for this address
62 */
63 uint32_t options GNUNET_PACKED;
64
60 /** 65 /**
61 * IPv4 address, in network byte order. 66 * IPv4 address, in network byte order.
62 */ 67 */
@@ -74,6 +79,10 @@ struct IPv4UdpAddress
74 */ 79 */
75struct IPv6UdpAddress 80struct IPv6UdpAddress
76{ 81{
82 /**
83 * Optional options and flags for this address
84 */
85 uint32_t options GNUNET_PACKED;
77 86
78 /** 87 /**
79 * IPv6 address. 88 * IPv6 address.