diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-09-21 10:43:22 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-09-21 10:43:22 +0200 |
commit | a9f01707ad64fc554077ca109ba03128ed8294be (patch) | |
tree | a2dbd07b39e5a4a38db501050dbd2c01fd8f83ec /src/mint/taler-mint-httpd_wire.c | |
parent | 49d8426cf444daaf97c195096c5f59bf010b16d0 (diff) |
add option -C to force closing of connections
Diffstat (limited to 'src/mint/taler-mint-httpd_wire.c')
-rw-r--r-- | src/mint/taler-mint-httpd_wire.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_wire.c b/src/mint/taler-mint-httpd_wire.c index 143d7c48d..9c00b5d43 100644 --- a/src/mint/taler-mint-httpd_wire.c +++ b/src/mint/taler-mint-httpd_wire.c @@ -106,6 +106,7 @@ TMH_WIRE_handler_wire_test (struct TMH_RequestHandler *rh, GNUNET_break (0); return MHD_NO; } + TMH_RESPONSE_add_global_headers (response); for (i=0;NULL != TMH_expected_wire_formats[i];i++) if (0 == strcasecmp ("test", TMH_expected_wire_formats[i])) @@ -179,6 +180,7 @@ TMH_WIRE_handler_wire_sepa (struct TMH_RequestHandler *rh, GNUNET_break (0); return MHD_NO; } + TMH_RESPONSE_add_global_headers (response); ret = MHD_queue_response (connection, MHD_HTTP_NOT_IMPLEMENTED, response); @@ -225,6 +227,7 @@ TMH_WIRE_handler_wire_sepa (struct TMH_RequestHandler *rh, GNUNET_break (0); return MHD_NO; } + TMH_RESPONSE_add_global_headers (response); if (NULL != rh->mime_type) (void) MHD_add_response_header (response, MHD_HTTP_HEADER_CONTENT_TYPE, |