From a2dde02b64a8ee75c9243632eb45a6ceb9b62dd5 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 7 Jun 2023 23:11:05 +0200 Subject: major libtalertesting API refactoring, including no longer having taler-specific logic in the test engine core --- src/auditor/auditor.conf | 2 +- src/auditor/taler-auditor-httpd.c | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/auditor') diff --git a/src/auditor/auditor.conf b/src/auditor/auditor.conf index 270836283..5ec703465 100644 --- a/src/auditor/auditor.conf +++ b/src/auditor/auditor.conf @@ -17,7 +17,7 @@ AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv # What is the Web site of the auditor (i.e. to file complaints about # a misbehaving exchange)? -# BASE_URL = https://auditor.taler.net/ +BASE_URL = http://localhost:8083/ # Network configuration for the normal API/service HTTP server diff --git a/src/auditor/taler-auditor-httpd.c b/src/auditor/taler-auditor-httpd.c index a212eddca..68316082f 100644 --- a/src/auditor/taler-auditor-httpd.c +++ b/src/auditor/taler-auditor-httpd.c @@ -132,7 +132,7 @@ handle_mhd_completion_callback (void *cls, /** - * Handle a "/version" request. + * Handle a "/config" request. * * @param rh context of the handler * @param connection the MHD connection to handle @@ -142,11 +142,11 @@ handle_mhd_completion_callback (void *cls, * @return MHD result code */ static MHD_RESULT -handle_version (struct TAH_RequestHandler *rh, - struct MHD_Connection *connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size) +handle_config (struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size) { static json_t *ver; /* we build the response only once, keep around for next query! */ @@ -207,9 +207,9 @@ handle_mhd_request (void *cls, { "/exchanges", MHD_HTTP_METHOD_GET, "application/json", NULL, 0, &TAH_EXCHANGES_handler, MHD_HTTP_OK }, - { "/version", MHD_HTTP_METHOD_GET, "application/json", + { "/config", MHD_HTTP_METHOD_GET, "application/json", NULL, 0, - &handle_version, MHD_HTTP_OK }, + &handle_config, MHD_HTTP_OK }, /* Landing page, for now tells humans to go away * (NOTE: ideally, the reverse proxy will respond with a nicer page) */ { "/", MHD_HTTP_METHOD_GET, "text/plain", -- cgit v1.2.3