aboutsummaryrefslogtreecommitdiff
path: root/src/social
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-10 17:38:29 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-10 17:38:29 +0100
commitbf5f92d9429a556f68c950df7be3dc25907e0d6c (patch)
tree640b74c6a12a53ccac9925eb05b9e6d644d7e748 /src/social
parent06c0c503acd9d523d4d18eeac862222a744db2ab (diff)
downloadgnunet-bf5f92d9429a556f68c950df7be3dc25907e0d6c.tar.gz
gnunet-bf5f92d9429a556f68c950df7be3dc25907e0d6c.zip
rename connecT -> connect now that the old API is dead
Diffstat (limited to 'src/social')
-rw-r--r--src/social/social_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/social/social_api.c b/src/social/social_api.c
index f78cb9a85..d96c93d8f 100644
--- a/src/social/social_api.c
+++ b/src/social/social_api.c
@@ -1195,7 +1195,7 @@ host_connect (struct GNUNET_SOCIAL_Host *hst)
1195 GNUNET_MQ_handler_end () 1195 GNUNET_MQ_handler_end ()
1196 }; 1196 };
1197 1197
1198 plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social", 1198 plc->mq = GNUNET_CLIENT_connect (plc->cfg, "social",
1199 handlers, host_disconnected, hst); 1199 handlers, host_disconnected, hst);
1200 GNUNET_assert (NULL != plc->mq); 1200 GNUNET_assert (NULL != plc->mq);
1201 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq); 1201 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
@@ -1697,7 +1697,7 @@ guest_connect (struct GNUNET_SOCIAL_Guest *gst)
1697 GNUNET_MQ_handler_end () 1697 GNUNET_MQ_handler_end ()
1698 }; 1698 };
1699 1699
1700 plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social", 1700 plc->mq = GNUNET_CLIENT_connect (plc->cfg, "social",
1701 handlers, guest_disconnected, gst); 1701 handlers, guest_disconnected, gst);
1702 GNUNET_assert (NULL != plc->mq); 1702 GNUNET_assert (NULL != plc->mq);
1703 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq); 1703 plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
@@ -2597,7 +2597,7 @@ app_connect (struct GNUNET_SOCIAL_App *app)
2597 GNUNET_MQ_handler_end () 2597 GNUNET_MQ_handler_end ()
2598 }; 2598 };
2599 2599
2600 app->mq = GNUNET_CLIENT_connecT (app->cfg, "social", 2600 app->mq = GNUNET_CLIENT_connect (app->cfg, "social",
2601 handlers, app_disconnected, app); 2601 handlers, app_disconnected, app);
2602 GNUNET_assert (NULL != app->mq); 2602 GNUNET_assert (NULL != app->mq);
2603 GNUNET_MQ_send_copy (app->mq, app->connect_env); 2603 GNUNET_MQ_send_copy (app->mq, app->connect_env);