diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-07-29 12:28:05 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-29 12:28:05 +0200 |
commit | 3b39ad1e7b01a3001372823c98603c45c25d520f (patch) | |
tree | 0dfae93f11319009dd8427df135d2dedbc0f1db9 /src/auditor/taler-auditor-httpd.c | |
parent | b3c04d645f4e82994c1437722a12e547a84b4d1f (diff) |
DCE, fix some doxygen issues
Diffstat (limited to 'src/auditor/taler-auditor-httpd.c')
-rw-r--r-- | src/auditor/taler-auditor-httpd.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/auditor/taler-auditor-httpd.c b/src/auditor/taler-auditor-httpd.c index f1fa431ad..722d82946 100644 --- a/src/auditor/taler-auditor-httpd.c +++ b/src/auditor/taler-auditor-httpd.c @@ -34,7 +34,6 @@ #include "taler-auditor-httpd_deposit-confirmation-del.h" #include "taler-auditor-httpd_deposit-confirmation-get.h" #include "taler-auditor-httpd_amount-arithmetic-inconsistency-get.h" -#include "taler-auditor-httpd_amount-arithmetic-inconsistency-put.h" #include "taler-auditor-httpd_amount-arithmetic-inconsistency-del.h" #include "taler-auditor-httpd_amount-arithmetic-inconsistency-upd.h" #include "taler-auditor-httpd_coin-inconsistency-get.h" @@ -68,7 +67,6 @@ #include "taler-auditor-httpd_reserve-balance-insufficient-inconsistency-del.h" #include "taler-auditor-httpd_bad-sig-losses-get.h" -#include "taler-auditor-httpd_bad-sig-losses-put.h" #include "taler-auditor-httpd_bad-sig-losses-del.h" #include "taler-auditor-httpd_bad-sig-losses-upd.h" @@ -271,8 +269,9 @@ handle_mhd_completion_callback (void *cls, * @param[in,out] connection_cls the connection's closure (can be updated) * @param upload_data upload data * @param[in,out] upload_data_size number of bytes (left) in @a upload_data + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ static MHD_RESULT handle_config (struct TAH_RequestHandler *rh, struct MHD_Connection *connection, @@ -446,10 +445,6 @@ handle_mhd_request (void *cls, "application/json", NULL, 0, &TAH_AMOUNT_ARITHMETIC_INCONSISTENCY_handler_get, MHD_HTTP_OK, true }, - { "/monitoring/amount-arithmetic-inconsistency", MHD_HTTP_METHOD_PUT, - "application/json", - NULL, 0, - &TAH_AMOUNT_ARITHMETIC_INCONSISTENCY_PUT_handler, MHD_HTTP_OK, true }, { "/monitoring/amount-arithmetic-inconsistency", MHD_HTTP_METHOD_DELETE, "application/json", NULL, 0, @@ -495,11 +490,6 @@ handle_mhd_request (void *cls, NULL, 0, &TAH_BAD_SIG_LOSSES_handler_get, MHD_HTTP_OK, true }, - { "/monitoring/bad-sig-losses", MHD_HTTP_METHOD_PUT, - "application/json", - NULL, 0, - &TAH_BAD_SIG_LOSSES_PUT_handler, - MHD_HTTP_OK, true }, { "/monitoring/bad-sig-losses", MHD_HTTP_METHOD_DELETE, "application/json", NULL, 0, |