aboutsummaryrefslogtreecommitdiff
path: root/src/multicast/multicast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/multicast/multicast.h')
-rw-r--r--src/multicast/multicast.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/multicast/multicast.h b/src/multicast/multicast.h
index daa79e260..5b0fc647c 100644
--- a/src/multicast/multicast.h
+++ b/src/multicast/multicast.h
@@ -33,7 +33,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
33/** 33/**
34 * Header of a join request sent to the origin or another member. 34 * Header of a join request sent to the origin or another member.
35 */ 35 */
36struct GNUNET_MULTICAST_JoinRequest 36struct MulticastJoinRequestMessage
37{ 37{
38 /** 38 /**
39 * Header for the join request. 39 * Header for the join request.
@@ -67,7 +67,7 @@ struct GNUNET_MULTICAST_JoinRequest
67 */ 67 */
68 struct GNUNET_PeerIdentity member_peer; 68 struct GNUNET_PeerIdentity member_peer;
69 69
70 /* Followed by request body. */ 70 /* Followed by struct GNUNET_MessageHeader join_request */
71}; 71};
72 72
73 73
@@ -97,9 +97,9 @@ struct MulticastJoinDecisionMessage
97 */ 97 */
98 uint32_t relay_count; 98 uint32_t relay_count;
99 99
100 /* followed by 'relay_count' peer identities */ 100 /* Followed by relay_count peer identities */
101 101
102 /* followed by the join response message */ 102 /* Followed by the join response message */
103 103
104}; 104};
105 105