diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-03-13 01:46:55 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-03-13 01:46:55 +0100 |
commit | e4186e9327787fe463ab4571186672888df09e39 (patch) | |
tree | 83aee49d170aee9a7c5bc4facc712081b547adbc /src/conversation | |
parent | 91abbcffa03d4f87d4c899ec396c9213e9dc6e18 (diff) |
renaming CADET APIs to match naming conventions again, now that the old symbols have been purged
Diffstat (limited to 'src/conversation')
-rw-r--r-- | src/conversation/gnunet-service-conversation.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c index e61ed44a1b..5f43bfe80d 100644 --- a/src/conversation/gnunet-service-conversation.c +++ b/src/conversation/gnunet-service-conversation.c @@ -1109,7 +1109,7 @@ handle_client_call_message (void *cls, line->channel_tail, ch); ch->status = CS_CALLER_CALLING; - ch->channel = GNUNET_CADET_channel_creatE (cadet, + ch->channel = GNUNET_CADET_channel_create (cadet, ch, &msg->target, &msg->line_port, @@ -1263,7 +1263,7 @@ handle_client_register_message (void *cls, }; line->line_port = msg->line_port; - line->port = GNUNET_CADET_open_porT (cadet, + line->port = GNUNET_CADET_open_port (cadet, &msg->line_port, &inbound_channel, line, @@ -1306,7 +1306,7 @@ run (void *cls, GNUNET_assert (GNUNET_OK == GNUNET_CRYPTO_get_peer_identity (cfg, &my_identity)); - cadet = GNUNET_CADET_connecT (cfg); + cadet = GNUNET_CADET_connect (cfg); if (NULL == cadet) { GNUNET_break (0); |