aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0@n0.is <ng0@n0.is>2019-06-05 13:29:25 +0000
committerng0@n0.is <ng0@n0.is>2019-06-05 13:29:25 +0000
commit6605c95e929b1d0dcb2df0ea81aed94297ae7b30 (patch)
tree80eaf53c57f45256ea6c8db7b69aafc50d2a92e3
parent322e4580fb6ff90b1606f413f8b25ed5b86143e0 (diff)
downloadlibmicrohttpd-gsoc2019-6605c95e929b1d0dcb2df0ea81aed94297ae7b30.tar.gz
libmicrohttpd-gsoc2019-6605c95e929b1d0dcb2df0ea81aed94297ae7b30.zip
rgs debian log html
-rw-r--r--syscalls.html18
1 files changed, 16 insertions, 2 deletions
diff --git a/syscalls.html b/syscalls.html
index 3396759..803023b 100644
--- a/syscalls.html
+++ b/syscalls.html
@@ -165,12 +165,26 @@
165 <td>modest response generation</td> 165 <td>modest response generation</td>
166 </tr> 166 </tr>
167 <tr> 167 <tr>
168 <td>response generation using sendfile()</td> 168 <td>
169 <a href="response_generation_sendfile.c">response generation using sendfile()</a>
170 (<a href="_rgs/response_generation_sendfile.c.debian.strace.log.txt">log</a>):
171 The test had to be updated for Debian to work, so we are
172 reading a prepared file which exists, contrary to the earlier
173 NetBSD test.
174 After receiving the GET request, we see 1 call to
175 setsockopt (TCP_CORK) immediately before the header is
176 send.
177 Then we see 6 calls to setsockopt:
178 TCP_CORK, TCP_NODELAY, TCP_NODELAY, TCP_CORK, TCP_CORK,
179 TCP_NODELAY. sendfile is called. setsockopt is called to
180 set TCP_NODELAY. the filedescriptor is closed. setsockopt
181 is called with TCP_NODELAY.
182 </td>
169 <td>response generation using sendfile()</td> 183 <td>response generation using sendfile()</td>
170 <td> 184 <td>
171 <a href="response_generation_sendfile.c">response generation using sendfile()</a> 185 <a href="response_generation_sendfile.c">response generation using sendfile()</a>
172 (<a href="_rgs/response_generation_sendfile.c.netbsd.ktruss.log.txt">log</a>): 186 (<a href="_rgs/response_generation_sendfile.c.netbsd.ktruss.log.txt">log</a>):
173 After receiving the GET requestion, the file with 187 After receiving the GET request, the file with
174 the content "a" is created. 188 the content "a" is created.
175 We see 1 call to setsockopt just before the header is send. 189 We see 1 call to setsockopt just before the header is send.
176 Immediatelly after we see another setsockopt call. The file 190 Immediatelly after we see another setsockopt call. The file