summaryrefslogtreecommitdiff
path: root/src/backend/anastasis-httpd_mhd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/anastasis-httpd_mhd.c')
-rw-r--r--src/backend/anastasis-httpd_mhd.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/backend/anastasis-httpd_mhd.c b/src/backend/anastasis-httpd_mhd.c
index c39a54c..6d2d898 100644
--- a/src/backend/anastasis-httpd_mhd.c
+++ b/src/backend/anastasis-httpd_mhd.c
@@ -27,14 +27,6 @@
#include "anastasis-httpd_mhd.h"
-/**
- * Function to call to handle the request by sending
- * back static data from the @a rh.
- *
- * @param rh context of the handler
- * @param connection the MHD connection to handle
- * @return MHD result code
- */
MHD_RESULT
TMH_MHD_handler_static_response (struct AH_RequestHandler *rh,
struct MHD_Connection *connection)
@@ -49,21 +41,13 @@ TMH_MHD_handler_static_response (struct AH_RequestHandler *rh,
}
-/**
- * Function to call to handle the request by sending
- * back a redirect to the AGPL source code.
- *
- * @param rh context of the handler
- * @param connection the MHD connection to handle
- * @return MHD result code
- */
MHD_RESULT
TMH_MHD_handler_agpl_redirect (struct AH_RequestHandler *rh,
struct MHD_Connection *connection)
{
(void) rh;
return TALER_MHD_reply_agpl (connection,
- "http://www.git.taler.net/anastasis.git");
+ "https://git.taler.net/anastasis.git");
}