aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-07-22 17:17:04 +0000
committerng0 <ng0@n0.is>2019-07-22 17:17:04 +0000
commit6c03b75c18c25a3c90fbac02dc332bed8fbcafdb (patch)
treefc0e0d73a2074bb3364f84e2201ab265e51b07f3 /src/microhttpd
parent30404c348048f01c7f43a3645f4d6ea6154010cc (diff)
downloadlibmicrohttpd-6c03b75c18c25a3c90fbac02dc332bed8fbcafdb.tar.gz
libmicrohttpd-6c03b75c18c25a3c90fbac02dc332bed8fbcafdb.zip
doxygen: MHD_SSO
Diffstat (limited to 'src/microhttpd')
-rw-r--r--src/microhttpd/mhd_send.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/microhttpd/mhd_send.h b/src/microhttpd/mhd_send.h
index 982c36a4..e6ed3268 100644
--- a/src/microhttpd/mhd_send.h
+++ b/src/microhttpd/mhd_send.h
@@ -37,13 +37,20 @@
37#include "connection.h" 37#include "connection.h"
38#include "connection_https.h" 38#include "connection_https.h"
39 39
40/**
41 * The enumeration of send socket options.
42 */
40enum MHD_SendSocketOptions 43enum MHD_SendSocketOptions
41{ 44{
42 /* definitely no corking (use NODELAY, or explicitly disable cork) */ 45 /**
46 * definitely no corking (use NODELAY, or explicitly disable cork)
47 */
43 MHD_SSO_NO_CORK = 0, 48 MHD_SSO_NO_CORK = 0,
44 /* should enable corking (use MSG_MORE, or explicitly enable cork) */ 49 /**
50 * should enable corking (use MSG_MORE, or explicitly enable cork)
51 */
45 MHD_SSO_MAY_CORK = 1, 52 MHD_SSO_MAY_CORK = 1,
46 /* 53 /**
47 * consider tcpi_snd_mss and consider not corking for the header 54 * consider tcpi_snd_mss and consider not corking for the header
48 * part if the size of the header is close to the MSS. 55 * part if the size of the header is close to the MSS.
49 * Only used if we are NOT doing 100 Continue and are still 56 * Only used if we are NOT doing 100 Continue and are still