no timeout for GNS request
authorSchanzenbach, Martin <mschanzenbach@posteo.de>
Tue, 16 Jul 2019 15:53:45 +0000 (17:53 +0200)
committerSchanzenbach, Martin <mschanzenbach@posteo.de>
Tue, 16 Jul 2019 15:53:45 +0000 (17:53 +0200)
src/gns/plugin_rest_gns.c

index a0a582a5050ba27c631be23dded32489ab8ff960..46babdc7671d41961ac9662bd98944555d219b7d 100644 (file)
@@ -101,16 +101,6 @@ struct RequestHandle
    */
   struct GNUNET_REST_RequestHandle *rest_handle;
 
-  /**
-   * Desired timeout for the lookup (default is no timeout).
-   */
-  struct GNUNET_TIME_Relative timeout;
-
-  /**
-   * ID of a task associated with the resolution process.
-   */
-  struct GNUNET_SCHEDULER_Task *timeout_task;
-
   /**
    * The plugin result processor
    */
@@ -161,11 +151,6 @@ cleanup_handle (void *cls)
     handle->gns = NULL;
   }
 
-  if (NULL != handle->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel (handle->timeout_task);
-    handle->timeout_task = NULL;
-  }
   if (NULL != handle->url)
     GNUNET_free (handle->url);
   if (NULL != handle->name)
@@ -190,16 +175,13 @@ do_error (void *cls)
   json_t *json_error = json_object();
   char *response;
 
-  if (NULL != handle->timeout_task)
-    GNUNET_SCHEDULER_cancel (handle->timeout_task);
-  handle->timeout_task = NULL;
   if (NULL == handle->emsg)
     handle->emsg = GNUNET_strdup(GNUNET_REST_GNS_ERROR_UNKNOWN);
 
   json_object_set_new(json_error,"error", json_string(handle->emsg));
 
   if (0 == handle->response_code)
-    handle->response_code = MHD_HTTP_OK;
+    handle->response_code = MHD_HTTP_INTERNAL_SERVER_ERROR;
   response = json_dumps (json_error, 0);
   resp = GNUNET_REST_create_response (response);
   handle->proc (handle->proc_cls, resp, handle->response_code);
@@ -209,16 +191,6 @@ do_error (void *cls)
 }
 
 
-static void
-do_timeout (void *cls)
-{
-  struct RequestHandle *handle = cls;
-  handle->timeout_task = NULL;
-  handle->response_code = MHD_HTTP_REQUEST_TIMEOUT;
-  do_error (handle);
-}
-
-
 /**
  * Iterator called on obtained result for a GNS lookup.
  *
@@ -398,7 +370,6 @@ rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle,
   struct RequestHandle *handle = GNUNET_new (struct RequestHandle);
 
   handle->response_code = 0;
-  handle->timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60);
   handle->proc_cls = proc_cls;
   handle->proc = proc;
   handle->rest_handle = rest_handle;
@@ -410,11 +381,6 @@ rest_process_request(struct GNUNET_REST_RequestHandle *rest_handle,
   handle->gns = GNUNET_GNS_connect (cfg);
   init_cont(handle);
 
-  handle->timeout_task =
-    GNUNET_SCHEDULER_add_delayed (handle->timeout,
-                                  &do_timeout,
-                                  handle);
-
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connected\n");
 }