aboutsummaryrefslogtreecommitdiff
path: root/src/multicast/multicast.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2014-05-17 10:16:15 +0000
committerGabor X Toth <*@tg-x.net>2014-05-17 10:16:15 +0000
commit83c058a5ea11b6d7aa05cb71963c6063cb373603 (patch)
tree30921098e391d492cf52311983348232d41d9634 /src/multicast/multicast.h
parentd78b7d8a3f6cdaee244557667350da443ca76db5 (diff)
downloadgnunet-83c058a5ea11b6d7aa05cb71963c6063cb373603.tar.gz
gnunet-83c058a5ea11b6d7aa05cb71963c6063cb373603.zip
multicast, psyc: client connections, join requests
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