chiark / gitweb /
daemon: record the deferred for a request in the queue, too
[hippotat.git] / w3mstracetodump
index fdf28eb22cd9e643e038c8807e373b6934d28f73..907af4f4f605eeb37450ce291fc8da8047ddc504 100755 (executable)
@@ -2,8 +2,11 @@
 
 # strace -s70000 -ot w3m ./form.html
 
-next unless s{^write\(7, "}{};
-next unless m/^POST|GET/..0;
+next unless
+    (m/^connect\((\d+),.*AF_INET/ and $fd = $1) ..
+    m/^close\($fd\)/;
+
+next unless s{^write\($fd, "}{};
 s{", \d+\)\s+= \d+\n}{};
 s{\\r}{\r}g;
 s{\\n}{\n}g;