aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0@n0.is <ng0@n0.is>2019-06-05 11:31:45 +0000
committerng0@n0.is <ng0@n0.is>2019-06-05 11:31:45 +0000
commitf1ca5ca7ebe46d86725549039aec77d9a94a0f2c (patch)
treeb12abe0a8faadc652c577c6d49a4c186b5dd1267
parentefa59aace1a20b652f9794dcf11e91dea3a4e8d4 (diff)
downloadlibmicrohttpd-gsoc2019-f1ca5ca7ebe46d86725549039aec77d9a94a0f2c.tar.gz
libmicrohttpd-gsoc2019-f1ca5ca7ebe46d86725549039aec77d9a94a0f2c.zip
html
-rw-r--r--syscalls.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/syscalls.html b/syscalls.html
index 0af48e1..3396759 100644
--- a/syscalls.html
+++ b/syscalls.html
@@ -119,7 +119,17 @@
119 </td> 119 </td>
120 </tr> 120 </tr>
121 <tr> 121 <tr>
122 <td>tiny response generation</td> 122 <td>
123 <a href="trg.c">tiny response generation</a>
124 (<a href="_trg/trg.c.debian.strace.log.txt">log</a>):
125 After receiving the GET request, we see 1
126 setsockopt call (TCP_CORK). The header is send.
127 This is followed by 6 setsockopt calls:
128 TCP_CORK, TCP_NODELAY, TCP_NODELAY, TCP_CORK,
129 TCP_CORK, TCP_NODELAY. The body is send.
130 Then we see 2 final setsockopt calls: TCP_CORK,
131 TCP_NODELAY.
132 </td>
123 <td> 133 <td>
124 <a href="trg.c">tiny response generation</a> 134 <a href="trg.c">tiny response generation</a>
125 (<a href="_trg/trg.c.freebsd.truss.log.txt">log</a>): 135 (<a href="_trg/trg.c.freebsd.truss.log.txt">log</a>):