aboutsummaryrefslogtreecommitdiff
path: root/src/ats
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-02-11 13:46:02 +0000
committerChristian Grothoff <christian@grothoff.org>2015-02-11 13:46:02 +0000
commit7c8f917f194f402fa1bd2ee5bf12cd9046f16ee1 (patch)
tree86d95f17b0d803a44b8f52eec48cc3f8e016635e /src/ats
parentc5e75397db3b88d41f1bd61b6422ddc74993f797 (diff)
downloadgnunet-7c8f917f194f402fa1bd2ee5bf12cd9046f16ee1.tar.gz
gnunet-7c8f917f194f402fa1bd2ee5bf12cd9046f16ee1.zip
eliminate dead call from API
Diffstat (limited to 'src/ats')
-rw-r--r--src/ats/ats_api_scheduling.c29
1 files changed, 4 insertions, 25 deletions
diff --git a/src/ats/ats_api_scheduling.c b/src/ats/ats_api_scheduling.c
index f02e4a9e7..a0a196d1a 100644
--- a/src/ats/ats_api_scheduling.c
+++ b/src/ats/ats_api_scheduling.c
@@ -462,7 +462,7 @@ error_handler (void *cls,
462{ 462{
463 struct GNUNET_ATS_SchedulingHandle *sh = cls; 463 struct GNUNET_ATS_SchedulingHandle *sh = cls;
464 464
465 LOG (GNUNET_ERROR_TYPE_WARNING, 465 LOG (GNUNET_ERROR_TYPE_ERROR,
466 "ATS connection died (code %d), reconnecting\n", 466 "ATS connection died (code %d), reconnecting\n",
467 (int) error); 467 (int) error);
468 force_reconnect (sh); 468 force_reconnect (sh);
@@ -540,9 +540,11 @@ reconnect (struct GNUNET_ATS_SchedulingHandle *sh)
540 struct GNUNET_ATS_AddressRecord *ar; 540 struct GNUNET_ATS_AddressRecord *ar;
541 541
542 GNUNET_assert (NULL == sh->client); 542 GNUNET_assert (NULL == sh->client);
543 sh->client = GNUNET_CLIENT_connect ("ats", sh->cfg); 543 sh->client = GNUNET_CLIENT_connect ("ats",
544 sh->cfg);
544 if (NULL == sh->client) 545 if (NULL == sh->client)
545 { 546 {
547 GNUNET_break (0);
546 force_reconnect (sh); 548 force_reconnect (sh);
547 return; 549 return;
548 } 550 }
@@ -633,29 +635,6 @@ GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *sh)
633 635
634 636
635/** 637/**
636 * Test if a address and a session is known to ATS
637 *
638 * @param sh the scheduling handle
639 * @param address the address
640 * @param session the session
641 * @return #GNUNET_YES or #GNUNET_NO
642 */
643int
644GNUNET_ATS_session_known (struct GNUNET_ATS_SchedulingHandle *sh,
645 const struct GNUNET_HELLO_Address *address,
646 struct Session *session)
647{
648 if (NULL == session)
649 return GNUNET_NO;
650 if (NOT_FOUND != find_session_id (sh,
651 session,
652 address))
653 return GNUNET_YES; /* Exists */
654 return GNUNET_NO;
655}
656
657
658/**
659 * We have a new address ATS should know. Addresses have to be added 638 * We have a new address ATS should know. Addresses have to be added
660 * with this function before they can be: updated, set in use and 639 * with this function before they can be: updated, set in use and
661 * destroyed. 640 * destroyed.