aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_multicast_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2016-01-15 22:12:31 +0000
committerGabor X Toth <*@tg-x.net>2016-01-15 22:12:31 +0000
commit38e65c6c5268614b482d1234fea76cda11811044 (patch)
treeb9b9749dbfd45c8142571c7833c792e9f7043778 /src/include/gnunet_multicast_service.h
parent377e7340cce5136867734fb19e89a5fc51ac0c99 (diff)
downloadgnunet-38e65c6c5268614b482d1234fea76cda11811044.tar.gz
gnunet-38e65c6c5268614b482d1234fea76cda11811044.zip
psyc/multicast: var names
Diffstat (limited to 'src/include/gnunet_multicast_service.h')
-rw-r--r--src/include/gnunet_multicast_service.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/gnunet_multicast_service.h b/src/include/gnunet_multicast_service.h
index 9bbc69243..a4da495a3 100644
--- a/src/include/gnunet_multicast_service.h
+++ b/src/include/gnunet_multicast_service.h
@@ -179,7 +179,7 @@ struct GNUNET_MULTICAST_RequestHeader
179 /** 179 /**
180 * Public key of the sending member. 180 * Public key of the sending member.
181 */ 181 */
182 struct GNUNET_CRYPTO_EcdsaPublicKey member_key; 182 struct GNUNET_CRYPTO_EcdsaPublicKey member_pub_key;
183 183
184 /** 184 /**
185 * ECC signature of the request fragment. 185 * ECC signature of the request fragment.
@@ -285,7 +285,7 @@ GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
285 * 285 *
286 * @param cls 286 * @param cls
287 * Closure. 287 * Closure.
288 * @param member_key 288 * @param member_pub_key
289 * Public key of the member requesting join. 289 * Public key of the member requesting join.
290 * @param join_msg 290 * @param join_msg
291 * Application-dependent join message from the new member. 291 * Application-dependent join message from the new member.
@@ -294,7 +294,7 @@ GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
294 */ 294 */
295typedef void 295typedef void
296(*GNUNET_MULTICAST_JoinRequestCallback) (void *cls, 296(*GNUNET_MULTICAST_JoinRequestCallback) (void *cls,
297 const struct GNUNET_CRYPTO_EcdsaPublicKey *member_key, 297 const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key,
298 const struct GNUNET_MessageHeader *join_msg, 298 const struct GNUNET_MessageHeader *join_msg,
299 struct GNUNET_MULTICAST_JoinHandle *jh); 299 struct GNUNET_MULTICAST_JoinHandle *jh);
300 300
@@ -398,7 +398,7 @@ struct GNUNET_MULTICAST_ReplayHandle;
398 * @param cls 398 * @param cls
399 * Closure (set from GNUNET_MULTICAST_origin_start() 399 * Closure (set from GNUNET_MULTICAST_origin_start()
400 * or GNUNET_MULTICAST_member_join()). 400 * or GNUNET_MULTICAST_member_join()).
401 * @param member_key 401 * @param member_pub_key
402 * The member requesting replay. 402 * The member requesting replay.
403 * @param fragment_id 403 * @param fragment_id
404 * Which message fragment should be replayed. 404 * Which message fragment should be replayed.
@@ -409,7 +409,7 @@ struct GNUNET_MULTICAST_ReplayHandle;
409 */ 409 */
410typedef void 410typedef void
411(*GNUNET_MULTICAST_ReplayFragmentCallback) (void *cls, 411(*GNUNET_MULTICAST_ReplayFragmentCallback) (void *cls,
412 const struct GNUNET_CRYPTO_EcdsaPublicKey *member_key, 412 const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key,
413 uint64_t fragment_id, 413 uint64_t fragment_id,
414 uint64_t flags, 414 uint64_t flags,
415 struct GNUNET_MULTICAST_ReplayHandle *rh); 415 struct GNUNET_MULTICAST_ReplayHandle *rh);
@@ -425,7 +425,7 @@ typedef void
425 * @param cls 425 * @param cls
426 * Closure (set from GNUNET_MULTICAST_origin_start() 426 * Closure (set from GNUNET_MULTICAST_origin_start()
427 * or GNUNET_MULTICAST_member_join()). 427 * or GNUNET_MULTICAST_member_join()).
428 * @param member_key 428 * @param member_pub_key
429 * The member requesting replay. 429 * The member requesting replay.
430 * @param message_id 430 * @param message_id
431 * Which message should be replayed. 431 * Which message should be replayed.
@@ -438,7 +438,7 @@ typedef void
438 */ 438 */
439typedef void 439typedef void
440(*GNUNET_MULTICAST_ReplayMessageCallback) (void *cls, 440(*GNUNET_MULTICAST_ReplayMessageCallback) (void *cls,
441 const struct GNUNET_CRYPTO_EcdsaPublicKey *member_key, 441 const struct GNUNET_CRYPTO_EcdsaPublicKey *member_pub_key,
442 uint64_t message_id, 442 uint64_t message_id,
443 uint64_t fragment_offset, 443 uint64_t fragment_offset,
444 uint64_t flags, 444 uint64_t flags,
@@ -697,7 +697,7 @@ GNUNET_MULTICAST_origin_stop (struct GNUNET_MULTICAST_Origin *origin,
697 * Configuration to use. 697 * Configuration to use.
698 * @param group_key 698 * @param group_key
699 * ECC public key that identifies the group to join. 699 * ECC public key that identifies the group to join.
700 * @param member_key 700 * @param member_pub_key
701 * ECC key that identifies the member 701 * ECC key that identifies the member
702 * and used to sign requests sent to the origin. 702 * and used to sign requests sent to the origin.
703 * @param origin 703 * @param origin
@@ -736,7 +736,7 @@ GNUNET_MULTICAST_origin_stop (struct GNUNET_MULTICAST_Origin *origin,
736struct GNUNET_MULTICAST_Member * 736struct GNUNET_MULTICAST_Member *
737GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg, 737GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
738 const struct GNUNET_CRYPTO_EddsaPublicKey *group_key, 738 const struct GNUNET_CRYPTO_EddsaPublicKey *group_key,
739 const struct GNUNET_CRYPTO_EcdsaPrivateKey *member_key, 739 const struct GNUNET_CRYPTO_EcdsaPrivateKey *member_pub_key,
740 const struct GNUNET_PeerIdentity *origin, 740 const struct GNUNET_PeerIdentity *origin,
741 uint16_t relay_count, 741 uint16_t relay_count,
742 const struct GNUNET_PeerIdentity *relays, 742 const struct GNUNET_PeerIdentity *relays,