aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-07-24 11:37:11 +0000
committerng0 <ng0@n0.is>2019-07-24 11:37:11 +0000
commit7bfe541156884d5baeb671a2bd90e4c51851533b (patch)
tree03415aca8019891701f2afdaff554e9378d7a099
parent23b35cb84b8976ba52cad7c8d9ae2ed535d1d3c1 (diff)
downloadlibmicrohttpd-7bfe541156884d5baeb671a2bd90e4c51851533b.tar.gz
libmicrohttpd-7bfe541156884d5baeb671a2bd90e4c51851533b.zip
doxygen.
-rw-r--r--src/microhttpd/mhd_send.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 1d3b739a..2b2f9d93 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -33,7 +33,8 @@
33#include "mhd_send.h" 33#include "mhd_send.h"
34 34
35/** 35/**
36 * Set socket to nodelay, on or off. 36 * Set TCP_NODELAY flag on socket and save the
37 * #sk_tcp_nodelay_on state.
37 * 38 *
38 * @param connection the MHD_Connection structure 39 * @param connection the MHD_Connection structure
39 * @param value the state to set, boolean 40 * @param value the state to set, boolean
@@ -56,6 +57,14 @@ MHD_send_socket_state_nodelay_ (struct MHD_Connection *connection,
56#endif 57#endif
57} 58}
58 59
60/**
61 * Set TCP_NOPUSH flag on socket and save the
62 * #sk_tcp_nodelay_on state.
63 *
64 * @param connection the #MHD_Connection structure
65 * @param value the state to set, boolean
66 * @param state_store the boolean value passed to #sk_tcp_nodelay_on
67 */
59void 68void
60MHD_send_socket_state_nopush_ (struct MHD_Connection *connection, 69MHD_send_socket_state_nopush_ (struct MHD_Connection *connection,
61 bool value, 70 bool value,