libmicrohttpd

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

commit 5181cf5a6ec2af8cb4e98ebcea7d492149604509
parent 9914221301c6b9119c6db07343123e081e87e555
Author: ng0 <ng0@n0.is>
Date:   Mon, 17 Jun 2019 16:49:50 +0000

mhd_send: fix switch.

Diffstat:
Msrc/microhttpd/mhd_send.c | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c @@ -97,7 +97,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection, switch (MHD_SendSocketOptions) { /* No corking */ - case 0: + case MHD_SSO_NO_CORK: if (! connection->sk_tcp_nodelay_on) { opt1 = 1; @@ -122,7 +122,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection, } } /* Do corking, do MSG_MORE instead if available */ - case 1: + case MHD_SSO_MAY_CORK: #if defined(TCP_CORK) && ! defined(MSG_MORE) /* * We have TCP_CORK and we don't have MSG_MORE. @@ -184,7 +184,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection, } #endif /* Cork the header */ - case 2: + case MHD_SSO_HDR_CORK: if (something_with_snd_mss > (sizeof (buffer - 10))) { // magic guessing? if ((! 100_Continue) && (sending_header)) @@ -209,7 +209,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection, } } } -if (1 == MHD_SendSocketOptions) +if (MHD_SendSocketOptionsi == 1) { #ifdef MSG_MORE num_bytes = send (s, buffer, buffer_size, MSG_MORE); @@ -313,12 +313,12 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection, size_t opt1, opt2, length; switch (MHD_SendSocketOptions) { - case 0: + case MHD_SSO_NO_CORK: /* No corking */ - case 1: - case 2: + case MHD_SSO_MAY_CORK: + case MHD_SSO_HDR_CORK: } -if (1 == MHD_SendSocketOptions) +if (MHD_SendSocketOptions == 1) { // bla }