gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: remove dead globals


From: gnunet
Subject: [taler-exchange] branch master updated: remove dead globals
Date: Fri, 17 Jan 2020 18:01:59 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 8313dbd5 remove dead globals
8313dbd5 is described below

commit 8313dbd569a2579072f821f25c25c30543722b86
Author: Christian Grothoff <address@hidden>
AuthorDate: Fri Jan 17 18:01:56 2020 +0100

    remove dead globals
---
 src/exchange/taler-exchange-httpd.c          | 109 +++++++++++++--------------
 src/exchange/taler-exchange-httpd.h          |  21 +-----
 src/exchange/taler-exchange-httpd_keystate.c |   2 +-
 3 files changed, 57 insertions(+), 75 deletions(-)

diff --git a/src/exchange/taler-exchange-httpd.c 
b/src/exchange/taler-exchange-httpd.c
index 44ac82d6..eb1bb79e 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -74,16 +74,6 @@ struct ExchangeHttpRequestClosure
 };
 
 
-/**
- * Which currency is used by this exchange?
- */
-char *TEH_exchange_currency_string;
-
-/**
- * Should we return "Connection: close" in each response?
- */
-int TEH_exchange_connection_close;
-
 /**
  * Base directory of the exchange (global)
  */
@@ -102,7 +92,7 @@ struct GNUNET_CONFIGURATION_Handle *cfg;
 /**
  * How long is caching /keys allowed at most?
  */
-struct GNUNET_TIME_Relative max_keys_caching;
+struct GNUNET_TIME_Relative TEH_max_keys_caching;
 
 /**
  * Master public key (according to the
@@ -481,8 +471,6 @@ handle_mhd_request (void *cls,
 static int
 exchange_serve_process_config ()
 {
-  char *TEH_master_public_key_str;
-
   if (GNUNET_OK !=
       GNUNET_CONFIGURATION_get_value_number (cfg,
                                              "exchange",
@@ -495,7 +483,7 @@ exchange_serve_process_config ()
       GNUNET_CONFIGURATION_get_value_time (cfg,
                                            "exchange",
                                            "MAX_KEYS_CACHING",
-                                           &max_keys_caching))
+                                           &TEH_max_keys_caching))
   {
     GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
                                "exchange",
@@ -525,49 +513,59 @@ exchange_serve_process_config ()
                                "REVOCATION_DIR");
     return GNUNET_SYSERR;
   }
-  if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_string (cfg,
-                                             "taler",
-                                             "CURRENCY",
-                                             &TEH_exchange_currency_string))
-  {
-    GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
-                               "taler",
-                               "currency");
-    return GNUNET_SYSERR;
-  }
-  if (strlen (TEH_exchange_currency_string) >= TALER_CURRENCY_LEN)
-  {
-    fprintf (stderr,
-             "Currency `%s' longer than the allowed limit of %u characters.",
-             TEH_exchange_currency_string,
-             (unsigned int) TALER_CURRENCY_LEN);
-    return GNUNET_SYSERR;
-  }
-  if (GNUNET_OK !=
-      GNUNET_CONFIGURATION_get_value_string (cfg,
-                                             "exchange",
-                                             "MASTER_PUBLIC_KEY",
-                                             &TEH_master_public_key_str))
   {
-    GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
-                               "exchange",
-                               "master_public_key");
-    return GNUNET_SYSERR;
+    char *currency_string;
+
+    if (GNUNET_OK !=
+        GNUNET_CONFIGURATION_get_value_string (cfg,
+                                               "taler",
+                                               "CURRENCY",
+                                               &currency_string))
+    {
+      GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+                                 "taler",
+                                 "CURRENCY");
+      return GNUNET_SYSERR;
+    }
+    if (strlen (currency_string) >= TALER_CURRENCY_LEN)
+    {
+      GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
+                                 "taler",
+                                 "CURRENCY",
+                                 "Value is too long");
+      GNUNET_free (currency_string);
+      return GNUNET_SYSERR;
+    }
+    GNUNET_free (currency_string);
   }
-  if (GNUNET_OK !=
-      GNUNET_CRYPTO_eddsa_public_key_from_string (TEH_master_public_key_str,
-                                                  strlen (
-                                                    TEH_master_public_key_str),
-                                                  &TEH_master_public_key.
-                                                  eddsa_pub))
   {
-    fprintf (stderr,
-             "Invalid master public key given in exchange configuration.");
-    GNUNET_free (TEH_master_public_key_str);
-    return GNUNET_SYSERR;
+    char *master_public_key_str;
+
+    if (GNUNET_OK !=
+        GNUNET_CONFIGURATION_get_value_string (cfg,
+                                               "exchange",
+                                               "MASTER_PUBLIC_KEY",
+                                               &master_public_key_str))
+    {
+      GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+                                 "exchange",
+                                 "master_public_key");
+      return GNUNET_SYSERR;
+    }
+    if (GNUNET_OK !=
+        GNUNET_CRYPTO_eddsa_public_key_from_string (master_public_key_str,
+                                                    strlen (
+                                                      master_public_key_str),
+                                                    &TEH_master_public_key.
+                                                    eddsa_pub))
+    {
+      fprintf (stderr,
+               "Invalid master public key given in exchange configuration.");
+      GNUNET_free (master_public_key_str);
+      return GNUNET_SYSERR;
+    }
+    GNUNET_free (master_public_key_str);
   }
-  GNUNET_free (TEH_master_public_key_str);
   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
               "Launching exchange with public key `%s'...\n",
               GNUNET_p2s (&TEH_master_public_key.eddsa_pub));
@@ -784,11 +782,12 @@ main (int argc,
   char *cfgfile = NULL;
   char *loglev = NULL;
   char *logfile = NULL;
+  int connection_close;
   const struct GNUNET_GETOPT_CommandLineOption options[] = {
     GNUNET_GETOPT_option_flag ('C',
                                "connection-close",
                                "force HTTP connections to be closed after each 
request",
-                               &TEH_exchange_connection_close),
+                               &connection_close),
     GNUNET_GETOPT_option_cfgfile (&cfgfile),
     GNUNET_GETOPT_option_flag ('i',
                                "init-db",
@@ -825,7 +824,7 @@ main (int argc,
                          argc, argv))
     return 1;
   go = TALER_MHD_GO_NONE;
-  if (TEH_exchange_connection_close)
+  if (connection_close)
     go |= TALER_MHD_GO_FORCE_CONNECTION_CLOSE;
   TALER_MHD_setup (go);
   GNUNET_assert (GNUNET_OK ==
diff --git a/src/exchange/taler-exchange-httpd.h 
b/src/exchange/taler-exchange-httpd.h
index bf065360..38c611c6 100644
--- a/src/exchange/taler-exchange-httpd.h
+++ b/src/exchange/taler-exchange-httpd.h
@@ -1,6 +1,6 @@
 /*
   This file is part of TALER
-  Copyright (C) 2014, 2015 GNUnet e.V.
+  Copyright (C) 2014, 2015, 2020 Taler Systems SA
 
   TALER is free software; you can redistribute it and/or modify it under the
   terms of the GNU Affero General Public License as published by the Free 
Software
@@ -19,8 +19,6 @@
  * @author Florian Dold
  * @author Benedikt Mueller
  * @author Christian Grothoff
- *
- * FIXME: Consider which of these need to really be globals...
  */
 #ifndef TALER_EXCHANGE_HTTPD_H
 #define TALER_EXCHANGE_HTTPD_H
@@ -28,20 +26,10 @@
 #include <microhttpd.h>
 
 
-/**
- * Which currency is used by this exchange?
- */
-extern char *TEH_exchange_currency_string;
-
-/**
- * Should we return "Connection: close" in each response?
- */
-extern int TEH_exchange_connection_close;
-
 /**
  * How long is caching /keys allowed at most?
  */
-extern struct GNUNET_TIME_Relative max_keys_caching;
+extern struct GNUNET_TIME_Relative TEH_max_keys_caching;
 
 /**
  * The exchange's configuration.
@@ -64,11 +52,6 @@ extern char *TEH_revocation_directory;
  */
 extern struct TALER_MasterPublicKeyP TEH_master_public_key;
 
-/**
- * Private key of the exchange we use to sign messages.
- */
-extern struct GNUNET_CRYPTO_EddsaPrivateKey TEH_exchange_private_signing_key;
-
 /**
  * Our DB plugin.
  */
diff --git a/src/exchange/taler-exchange-httpd_keystate.c 
b/src/exchange/taler-exchange-httpd_keystate.c
index 31cb1368..8b40144d 100644
--- a/src/exchange/taler-exchange-httpd_keystate.c
+++ b/src/exchange/taler-exchange-httpd_keystate.c
@@ -1258,7 +1258,7 @@ setup_general_response_headers (const struct 
TEH_KS_StateHandle *key_state,
   {
     struct GNUNET_TIME_Absolute m;
 
-    m = GNUNET_TIME_relative_to_absolute (max_keys_caching);
+    m = GNUNET_TIME_relative_to_absolute (TEH_max_keys_caching);
     m = GNUNET_TIME_absolute_min (m,
                                   key_state->next_reload);
     get_date_string (m,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]