summaryrefslogtreecommitdiff
path: root/src/mint/taler-mint-httpd.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-03-27 19:58:40 +0100
committerChristian Grothoff <christian@grothoff.org>2015-03-27 19:58:40 +0100
commiteae1896a4bfc02b5d7586f81bbedfea69b29acc8 (patch)
treec3927c09435b74fb547a37fe0c75d01dd7b7f234 /src/mint/taler-mint-httpd.h
parent7730a083494c0d49705f87b32fc85dfa6ed6809a (diff)
downloadexchange-eae1896a4bfc02b5d7586f81bbedfea69b29acc8.tar.gz
exchange-eae1896a4bfc02b5d7586f81bbedfea69b29acc8.tar.bz2
exchange-eae1896a4bfc02b5d7586f81bbedfea69b29acc8.zip
major rename-fest for more constent symbol names
Diffstat (limited to 'src/mint/taler-mint-httpd.h')
-rw-r--r--src/mint/taler-mint-httpd.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mint/taler-mint-httpd.h b/src/mint/taler-mint-httpd.h
index 50b745703..92ce54b84 100644
--- a/src/mint/taler-mint-httpd.h
+++ b/src/mint/taler-mint-httpd.h
@@ -29,7 +29,7 @@
* For now, we just do EUR. Should become configurable
* in the future!
*/
-#define MINT_CURRENCY "EUR"
+#define TMH_MINT_CURRENCY "EUR"
/**
@@ -41,29 +41,29 @@ extern struct GNUNET_CONFIGURATION_Handle *cfg;
* Main directory with mint data.
* FIXME: should we have those globals really here?
*/
-extern char *mintdir;
+extern char *TMH_mint_directory;
/**
* In which format does this MINT expect wiring instructions?
*/
-extern char *expected_wire_format;
+extern char *TMH_expected_wire_format;
/**
* Master public key (according to the
* configuration in the mint directory).
*/
-extern struct GNUNET_CRYPTO_EddsaPublicKey master_pub;
+extern struct GNUNET_CRYPTO_EddsaPublicKey TMH_master_public_key;
/**
* Private key of the mint we use to sign messages.
*/
-extern struct GNUNET_CRYPTO_EddsaPrivateKey mint_priv;
+extern struct GNUNET_CRYPTO_EddsaPrivateKey TMH_mint_private_signing_key;
/**
* Struct describing an URL and the handler for it.
*/
-struct RequestHandler
+struct TMH_RequestHandler
{
/**
@@ -102,7 +102,7 @@ struct RequestHandler
* @param[IN|OUT] upload_data_size number of bytes (left) in @a upload_data
* @return MHD result code
*/
- int (*handler)(struct RequestHandler *rh,
+ int (*handler)(struct TMH_RequestHandler *rh,
struct MHD_Connection *connection,
void **connection_cls,
const char *upload_data,