session time out for http client/server
[oweals/gnunet.git] / src / statistics / gnunet-statistics.c
index 8dc84190d8d823e4a8415875a747aa16d5171561..857c9bde6c447e27103110b391cb747bdb43e2e6 100644 (file)
@@ -25,8 +25,6 @@
  * @author Igor Wronsky
  */
 #include "platform.h"
-#include "gnunet_getopt_lib.h"
-#include "gnunet_program_lib.h"
 #include "gnunet_util_lib.h"
 #include "gnunet_statistics_service.h"
 #include "statistics.h"
@@ -168,7 +166,7 @@ shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
     GNUNET_assert (GNUNET_OK ==
                   GNUNET_STATISTICS_watch_cancel (h, subsystem, name, &printer, h));
   GNUNET_STATISTICS_destroy (h, GNUNET_NO);
-  h = NULL;  
+  h = NULL;
 }
 
 
@@ -250,16 +248,16 @@ main_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
  *
  * @param cls closure with our configuration
  * @param result #GNUNET_YES if the resolver is running
- */ 
+ */
 static void
-resolver_test_task (void *cls, 
+resolver_test_task (void *cls,
                    int result)
 {
   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
 
   if (GNUNET_YES != result)
    {
-     FPRINTF (stderr, 
+     FPRINTF (stderr,
              _("Trying to connect to remote host, but service `%s' is not running\n"), "resolver");
      return;
    }
@@ -274,13 +272,13 @@ resolver_test_task (void *cls,
   }
   else if (65535 <= remote_port)
   {
-    FPRINTF (stderr, 
+    FPRINTF (stderr,
             _("A port has to be between 1 and 65535 to connect to host `%s'\n"), remote_host);
     return;
   }
 
   /* Manipulate configuration */
-  GNUNET_CONFIGURATION_set_value_string (cfg, 
+  GNUNET_CONFIGURATION_set_value_string (cfg,
                                         "statistics", "UNIXPATH", "");
   GNUNET_CONFIGURATION_set_value_string (cfg,
                                         "statistics", "HOSTNAME", remote_host);
@@ -314,7 +312,7 @@ run (void *cls, char *const *args, const char *cfgfile,
     set_value = GNUNET_YES;
   }
   if (NULL != remote_host)
-    GNUNET_CLIENT_service_test ("resolver", cfg, GNUNET_TIME_UNIT_SECONDS, 
+    GNUNET_CLIENT_service_test ("resolver", cfg, GNUNET_TIME_UNIT_SECONDS,
                                &resolver_test_task, (void *) cfg);
   else
     GNUNET_SCHEDULER_add_now (&main_task, (void *) cfg);