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.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/multicast/multicast.h b/src/multicast/multicast.h
index 207f9f729..2d32bd6cf 100644
--- a/src/multicast/multicast.h
+++ b/src/multicast/multicast.h
@@ -63,12 +63,12 @@ struct MulticastJoinRequestMessage
63 /** 63 /**
64 * Public key of the target group. 64 * Public key of the target group.
65 */ 65 */
66 struct GNUNET_CRYPTO_EddsaPublicKey group_key; 66 struct GNUNET_CRYPTO_EddsaPublicKey group_pub_key;
67 67
68 /** 68 /**
69 * Public key of the joining member. 69 * Public key of the joining member.
70 */ 70 */
71 struct GNUNET_CRYPTO_EcdsaPublicKey member_key; 71 struct GNUNET_CRYPTO_EcdsaPublicKey member_pub_key;
72 72
73 /** 73 /**
74 * Peer identity of the joining member. 74 * Peer identity of the joining member.
@@ -128,7 +128,7 @@ struct MulticastJoinDecisionMessageHeader
128 * C->S: Public key of the member requesting join. 128 * C->S: Public key of the member requesting join.
129 * S->C: Unused. 129 * S->C: Unused.
130 */ 130 */
131 struct GNUNET_CRYPTO_EcdsaPublicKey member_key; 131 struct GNUNET_CRYPTO_EcdsaPublicKey member_pub_key;
132 132
133 /* Followed by struct MulticastJoinDecisionMessage */ 133 /* Followed by struct MulticastJoinDecisionMessage */
134}; 134};
@@ -176,7 +176,7 @@ struct MulticastReplayRequestMessage
176 * S->C: Public key of the member requesting replay. 176 * S->C: Public key of the member requesting replay.
177 * C->S: Unused. 177 * C->S: Unused.
178 */ 178 */
179 struct GNUNET_CRYPTO_EcdsaPublicKey member_key; 179 struct GNUNET_CRYPTO_EcdsaPublicKey member_pub_key;
180 180
181 /** 181 /**
182 * ID of the message that is being requested. 182 * ID of the message that is being requested.
@@ -286,7 +286,7 @@ struct MulticastMemberJoinMessage
286 286
287 uint32_t relay_count GNUNET_PACKED; 287 uint32_t relay_count GNUNET_PACKED;
288 288
289 struct GNUNET_CRYPTO_EddsaPublicKey group_key; 289 struct GNUNET_CRYPTO_EddsaPublicKey group_pub_key;
290 290
291 struct GNUNET_CRYPTO_EcdsaPrivateKey member_key; 291 struct GNUNET_CRYPTO_EcdsaPrivateKey member_key;
292 292
@@ -354,7 +354,7 @@ struct MulticastJoinMessage
354 /** 354 /**
355 * Public non-ephemeral key of the mutlicast group. 355 * Public non-ephemeral key of the mutlicast group.
356 */ 356 */
357 struct GNUNET_CRYPTO_EddsaPublicKey group_key; 357 struct GNUNET_CRYPTO_EddsaPublicKey group_pub_key;
358 358
359 /** 359 /**
360 * Our private key for the group. 360 * Our private key for the group.