aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0@n0.is <ng0@n0.is>2019-06-07 10:20:32 +0000
committerng0@n0.is <ng0@n0.is>2019-06-07 10:20:32 +0000
commited6d66b65ab83037478b37303b39979fae1964c0 (patch)
tree541f3fc41037b5c135d7399c95a912151fe443e1
parent19b3725afe1db2ac8255d92ba4e36f179db5c638 (diff)
downloadlibmicrohttpd-gsoc2019-ed6d66b65ab83037478b37303b39979fae1964c0.tar.gz
libmicrohttpd-gsoc2019-ed6d66b65ab83037478b37303b39979fae1964c0.zip
html logs.
-rw-r--r--syscalls.html22
1 files changed, 20 insertions, 2 deletions
diff --git a/syscalls.html b/syscalls.html
index 50ac82e..a80c7ca 100644
--- a/syscalls.html
+++ b/syscalls.html
@@ -160,8 +160,26 @@
160 </td> 160 </td>
161 </tr> 161 </tr>
162 <tr> 162 <tr>
163 <td>modest response generation</td> 163 <td>
164 <td>modest response generation</td> 164 <a href="mrg.c">modest response generation</a>
165 (<a href="_mrg/mrg.c.debian.strace.log.txt">log</a>):
166 We see 1 call to setsockopt() after receiving the GET
167 request (TCP_CORK).
168 Then we send the header.
169 We see 6 calls to setsockopt(): TCP_CORK, TCP_NODELAY,
170 TCP_NODELAY, TCP_CORK, TCP_CORK, TCP_NODELAY.
171 Then the body is send,
172 We see 2 more setsockopt() calls: TCP_CORK, TCP_NODELAY.
173 </td>
174 <td>
175 <a href="mrg.c">modest response generation</a>
176 (<a href="_mrg/mrg.c.freebsd.truss.log.txt">log</a>):
177 After receiving the GET request, we see 1 call to
178 setsockopt() (TCP_NODELAY).
179 Then the header is send.
180 We see 1 call to setsockopt() (TCP_NODELAY).
181 Then the body is send.
182 </td>
165 <td> 183 <td>
166 <a href="mrg.c">modest response generation</a> 184 <a href="mrg.c">modest response generation</a>
167 (<a href="_mrg/mrg.c.netbsd.ktruss.log.txt">log</a>): 185 (<a href="_mrg/mrg.c.netbsd.ktruss.log.txt">log</a>):