aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_multicast_service.h
diff options
context:
space:
mode:
authorGabor X Toth <*@tg-x.net>2013-08-27 07:29:52 +0000
committerGabor X Toth <*@tg-x.net>2013-08-27 07:29:52 +0000
commitd8ab7f76a1a9db992bc4295d1fddc0d1b324b55b (patch)
tree70e8ae8117f415a76cc968f3c717ef3203481872 /src/include/gnunet_multicast_service.h
parent5a4c0bfabee2d251b31a7279f3bf6f81065442ce (diff)
downloadgnunet-d8ab7f76a1a9db992bc4295d1fddc0d1b324b55b.tar.gz
gnunet-d8ab7f76a1a9db992bc4295d1fddc0d1b324b55b.zip
multicast/psyc/psycstore api: fix typos / type names
Diffstat (limited to 'src/include/gnunet_multicast_service.h')
-rw-r--r--src/include/gnunet_multicast_service.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/include/gnunet_multicast_service.h b/src/include/gnunet_multicast_service.h
index 01074358e..edd4984a2 100644
--- a/src/include/gnunet_multicast_service.h
+++ b/src/include/gnunet_multicast_service.h
@@ -314,7 +314,7 @@ GNUNET_MULTICAST_join_decision (struct GNUNET_MULTICAST_JoinHandle *jh,
314 */ 314 */
315typedef void 315typedef void
316(*GNUNET_MULTICAST_JoinCallback) (void *cls, 316(*GNUNET_MULTICAST_JoinCallback) (void *cls,
317 const struct GNUNET_EccPublicKey *member_key, 317 const struct GNUNET_CRYPTO_EccPublicKey *member_key,
318 const struct GNUNET_MessageHeader *join_req, 318 const struct GNUNET_MessageHeader *join_req,
319 struct GNUNET_MULTICAST_JoinHandle *jh); 319 struct GNUNET_MULTICAST_JoinHandle *jh);
320 320
@@ -370,7 +370,7 @@ typedef void
370 */ 370 */
371typedef void 371typedef void
372(*GNUNET_MULTICAST_RequestCallback) (void *cls, 372(*GNUNET_MULTICAST_RequestCallback) (void *cls,
373 const struct GNUNET_EccPublicKey *member_key, 373 const struct GNUNET_CRYPTO_EccPublicKey *member_key,
374 const struct GNUNET_MessageHeader *req, 374 const struct GNUNET_MessageHeader *req,
375 enum GNUNET_MULTICAST_MessageFlags flags); 375 enum GNUNET_MULTICAST_MessageFlags flags);
376 376
@@ -580,8 +580,9 @@ GNUNET_MULTICAST_origin_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
580 const struct GNUNET_CRYPTO_EccPrivateKey *priv_key, 580 const struct GNUNET_CRYPTO_EccPrivateKey *priv_key,
581 uint64_t last_fragment_id, 581 uint64_t last_fragment_id,
582 GNUNET_MULTICAST_JoinCallback join_cb, 582 GNUNET_MULTICAST_JoinCallback join_cb,
583 GNUNET_MULITCAST_MembershipTestCallback test_cb, 583 GNUNET_MULTICAST_MembershipTestCallback test_cb,
584 GNUNET_MULITCAST_ReplayCallback replay_cb, 584 GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
585 GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
585 GNUNET_MULTICAST_RequestCallback request_cb, 586 GNUNET_MULTICAST_RequestCallback request_cb,
586 GNUNET_MULTICAST_MessageCallback message_cb, 587 GNUNET_MULTICAST_MessageCallback message_cb,
587 void *cls); 588 void *cls);
@@ -694,8 +695,9 @@ GNUNET_MULTICAST_member_join (const struct GNUNET_CONFIGURATION_Handle *cfg,
694 const struct GNUNET_PeerIdentity *relays, 695 const struct GNUNET_PeerIdentity *relays,
695 const struct GNUNET_MessageHeader *join_request, 696 const struct GNUNET_MessageHeader *join_request,
696 GNUNET_MULTICAST_JoinCallback join_cb, 697 GNUNET_MULTICAST_JoinCallback join_cb,
697 GNUNET_MULITCAST_MembershipTestCallback test_cb, 698 GNUNET_MULTICAST_MembershipTestCallback test_cb,
698 GNUNET_MULITCAST_ReplayCallback replay_cb, 699 GNUNET_MULTICAST_ReplayFragmentCallback replay_frag_cb,
700 GNUNET_MULTICAST_ReplayMessageCallback replay_msg_cb,
699 GNUNET_MULTICAST_MessageCallback message_cb, 701 GNUNET_MULTICAST_MessageCallback message_cb,
700 void *cls); 702 void *cls);
701 703