aboutsummaryrefslogtreecommitdiff
path: root/src/psyc/psyc.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/psyc/psyc.h
parentd78b7d8a3f6cdaee244557667350da443ca76db5 (diff)
downloadgnunet-83c058a5ea11b6d7aa05cb71963c6063cb373603.tar.gz
gnunet-83c058a5ea11b6d7aa05cb71963c6063cb373603.zip
multicast, psyc: client connections, join requests
Diffstat (limited to 'src/psyc/psyc.h')
-rw-r--r--src/psyc/psyc.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/psyc/psyc.h b/src/psyc/psyc.h
index f2d386548..ab7b35d40 100644
--- a/src/psyc/psyc.h
+++ b/src/psyc/psyc.h
@@ -227,6 +227,21 @@ struct OperationResult
227}; 227};
228 228
229 229
230struct MasterJoinRequest
231{
232 /**
233 * Types:
234 * - GNUNET_MESSAGE_TYPE_PSYC_MASTER_JOIN_REQUEST
235 */
236 struct GNUNET_MessageHeader header;
237 /**
238 * Public key of the joining slave.
239 */
240 struct GNUNET_CRYPTO_EddsaPublicKey slave_key;
241
242 /* Followed by struct GNUNET_MessageHeader join_request */
243};
244
230GNUNET_NETWORK_STRUCT_END 245GNUNET_NETWORK_STRUCT_END
231 246
232#endif 247#endif