/** * Cleanup a 'struct GetPseuAuthorityHandle', terminating all * pending activities. * * @param gph handle to terminate */ static void free_get_pseu_authority_handle (struct GetPseuAuthorityHandle *gph) { if (NULL != gph->get_handle) { GNUNET_DHT_get_stop (gph->get_handle); gph->get_handle = NULL; } if (NULL != gph->namestore_task) { GNUNET_NAMESTORE_cancel (gph->namestore_task); gph->namestore_task = NULL; } if (NULL != gph->namecache_task) { GNUNET_NAMECACHE_cancel (gph->namecache_task); gph->namecache_task = NULL; } if (NULL != gph->timeout_task) { GNUNET_SCHEDULER_cancel (gph->timeout_task); gph->timeout_task = NULL; } GNUNET_CONTAINER_DLL_remove (gph_head, gph_tail, gph); GNUNET_free_non_null (gph->current_label); GNUNET_free (gph); }
/** * Re-establish the connection to the service. * * @param cls handle to use to re-connect. */ static void endbadly (void *cls) { if (NULL != nsqe) { GNUNET_NAMESTORE_cancel (nsqe); nsqe = NULL; } if (NULL != ncqe) { GNUNET_NAMECACHE_cancel (ncqe); ncqe = NULL; } cleanup (); res = 1; }
/** * Re-establish the connection to the service. * * @param cls handle to use to re-connect. * @param tc scheduler context */ static void endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) { if (NULL != nsqe) { GNUNET_NAMESTORE_cancel (nsqe); nsqe = NULL; } if (NULL != ncqe) { GNUNET_NAMECACHE_cancel (ncqe); ncqe = NULL; } cleanup (); res = 1; }