libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 126b496ed54c40d1163b1c30fb6e7fb6d5b7745d
parent 9e1db6c7b01e9e4cd790b3e8344e21ea2234c65d
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun,  4 Jun 2017 17:20:32 +0300

send_param_adapter(): removed branch for HTTPS handling

Diffstat:
Msrc/microhttpd/daemon.c | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -2205,10 +2205,6 @@ send_param_adapter (struct MHD_Connection *connection, if (i > MHD_SCKT_SEND_MAX_SIZE_) i = MHD_SCKT_SEND_MAX_SIZE_; /* return value limit */ - if (0 != (connection->daemon->options & MHD_USE_TLS)) - return MHD_send_ (connection->socket_fd, - other, - i); #if LINUX if ( (connection->write_buffer_append_offset == connection->write_buffer_send_offset) &&