X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=hippotat.git;a=blobdiff_plain;f=w3mstracetodump;h=907af4f4f605eeb37450ce291fc8da8047ddc504;hp=bb9305edf061350160c17fc89c22ce7def802f1d;hb=697be73ae820a076f6803820038c830dec3c966d;hpb=75fce4757ae3a0996f4fc1e3e6e113a893811aef diff --git a/w3mstracetodump b/w3mstracetodump index bb9305e..907af4f 100755 --- a/w3mstracetodump +++ b/w3mstracetodump @@ -1,7 +1,12 @@ #!/usr/bin/perl -n -next unless s{^write\(7, "}{}; -next unless m/^POST|GET/..0; +# strace -s70000 -ot w3m ./form.html + +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;