aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/test_conversation_api_twocalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/test_conversation_api_twocalls.c')
-rw-r--r--src/conversation/test_conversation_api_twocalls.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/conversation/test_conversation_api_twocalls.c b/src/conversation/test_conversation_api_twocalls.c
index 1bd2b4e22..2ca31854d 100644
--- a/src/conversation/test_conversation_api_twocalls.c
+++ b/src/conversation/test_conversation_api_twocalls.c
@@ -403,7 +403,7 @@ static void
403phone_event_handler (void *cls, 403phone_event_handler (void *cls,
404 enum GNUNET_CONVERSATION_PhoneEventCode code, 404 enum GNUNET_CONVERSATION_PhoneEventCode code,
405 struct GNUNET_CONVERSATION_Caller *caller, 405 struct GNUNET_CONVERSATION_Caller *caller,
406 const struct GNUNET_IDENTITY_PublicKey *caller_id) 406 const struct GNUNET_CRYPTO_PublicKey *caller_id)
407{ 407{
408 const char *cid; 408 const char *cid;
409 409
@@ -507,7 +507,7 @@ call_event_handler (void *cls, enum GNUNET_CONVERSATION_CallEventCode code)
507 507
508static void 508static void
509caller_ego_create_cont (void *cls, 509caller_ego_create_cont (void *cls,
510 const struct GNUNET_IDENTITY_PrivateKey *pk, 510 const struct GNUNET_CRYPTO_PrivateKey *pk,
511 enum GNUNET_ErrorCode ec) 511 enum GNUNET_ErrorCode ec)
512{ 512{
513 (void) cls; 513 (void) cls;
@@ -524,7 +524,7 @@ namestore_put_cont (void *cls, enum GNUNET_ErrorCode ec)
524 GNUNET_assert (GNUNET_EC_NONE == ec); 524 GNUNET_assert (GNUNET_EC_NONE == ec);
525 GNUNET_assert (NULL == op); 525 GNUNET_assert (NULL == op);
526 op = GNUNET_IDENTITY_create (id, "caller-ego", NULL, 526 op = GNUNET_IDENTITY_create (id, "caller-ego", NULL,
527 GNUNET_IDENTITY_TYPE_ECDSA, 527 GNUNET_PUBLIC_KEY_TYPE_ECDSA,
528 &caller_ego_create_cont, 528 &caller_ego_create_cont,
529 NULL); 529 NULL);
530} 530}
@@ -537,7 +537,7 @@ identity_cb (void *cls,
537 const char *name) 537 const char *name)
538{ 538{
539 struct GNUNET_GNSRECORD_Data rd; 539 struct GNUNET_GNSRECORD_Data rd;
540 struct GNUNET_IDENTITY_PublicKey pub; 540 struct GNUNET_CRYPTO_PublicKey pub;
541 541
542 (void) cls; 542 (void) cls;
543 (void) ctx; 543 (void) ctx;
@@ -595,7 +595,7 @@ identity_cb (void *cls,
595 595
596static void 596static void
597phone_ego_create_cont (void *cls, 597phone_ego_create_cont (void *cls,
598 const struct GNUNET_IDENTITY_PrivateKey *pk, 598 const struct GNUNET_CRYPTO_PrivateKey *pk,
599 enum GNUNET_ErrorCode ec) 599 enum GNUNET_ErrorCode ec)
600{ 600{
601 (void) cls; 601 (void) cls;
@@ -616,7 +616,7 @@ run (void *cls,
616 GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL); 616 GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
617 id = GNUNET_IDENTITY_connect (cfg, &identity_cb, NULL); 617 id = GNUNET_IDENTITY_connect (cfg, &identity_cb, NULL);
618 op = GNUNET_IDENTITY_create (id, "phone-ego", NULL, 618 op = GNUNET_IDENTITY_create (id, "phone-ego", NULL,
619 GNUNET_IDENTITY_TYPE_ECDSA, 619 GNUNET_PUBLIC_KEY_TYPE_ECDSA,
620 &phone_ego_create_cont, 620 &phone_ego_create_cont,
621 NULL); 621 NULL);
622 ns = GNUNET_NAMESTORE_connect (cfg); 622 ns = GNUNET_NAMESTORE_connect (cfg);