From 7adf9f170fbc314cc699c347f4c338be045c385f Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 10 Feb 2021 16:32:49 -0300 Subject: add allow-methods * for cors preflight --- src/mhd/mhd_responses.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/mhd/mhd_responses.c') diff --git a/src/mhd/mhd_responses.c b/src/mhd/mhd_responses.c index 9e6986a37..90a8d19f4 100644 --- a/src/mhd/mhd_responses.c +++ b/src/mhd/mhd_responses.c @@ -289,6 +289,11 @@ TALER_MHD_reply_cors_preflight (struct MHD_Connection *connection) /* Not available as MHD constant yet */ "Access-Control-Allow-Headers", "*")); + GNUNET_break (MHD_YES == + MHD_add_response_header (response, + /* Not available as MHD constant yet */ + "Access-Control-Allow-Methods", + "*")); { MHD_RESULT ret; -- cgit v1.2.3