Actually, the fix is probably even simpler.

The bug does not happen with an original libwww. It only happens with an LWP
which contains Debian patches. Specifically the patch
drop-non-blocking-socket.patch causes the problem since it keeps the socket
blocking while the original libwww explicitly sets the socket non-blocking
in _new_socket.
From my understanding of the code the original problem which caused the
patch to be added (#216821) should be no longer relevant since the socket is
actually connected before it is set to non-blocking.

Thus I recommend to just remove this old patch (from 2003) instead of
introducing yet another patch.

Regards,
Steffen

On Sun, May 12, 2019 at 01:11:45AM +0200, gregor herrmann <gre...@debian.org> 
wrote:
> On Sat, 11 May 2019 21:56:01 +0200, Steffen Ullrich wrote:
>
> > I think the issue is a  bit different than what was analyzed so far.
> […]
>
> Thank you for this detailed analysis!
>
> > The following small patch for LWP::protocol::http seems to fix the
> > problem for me:
> >
> > --- /usr/share/perl5/LWP/Protocol/http.pm       2019-05-11 
> > 19:05:21.488561325 +0000
> > +++ lib/LWP/Protocol/http.pm   2019-05-11 19:40:49.332810627 +0000
> > @@ -374,7 +374,9 @@
> >             if (defined($rbits) && $rbits =~ /[^\0]/) {
> >                 # readable
> >                 my $buf = $socket->_rbuf;
> > +               my $was_blocking = $socket->blocking(0);
> >                 my $n = $socket->sysread($buf, 1024, length($buf));
> > +               $socket->blocking(1) if $was_blocking;
> >                  unless (defined $n) {
> >                      die "read failed: $!" unless  $!{EINTR} || 
> > $!{EWOULDBLOCK} || $!{EAGAIN};
> >                      # if we get here the rest of the block will do nothing
>
> I've now tried the following, as per Guilhem's proposal in message
> #126:
>
> Terminal 1:
>
> % openssl req -x509 -keyout /tmp/key.pem -out /tmp/cert.pem -subj 
> /CN=127.0.0.1 -nodes
> % openssl s_server -accept 127.0.0.1:4433 -key /tmp/key.pem -cert 
> /tmp/cert.pem -tls1_3
>
> Terminal 2:
>
> % strace -y -ttt -etrace=select,read,write -o ~/tmp/strace.orig perl 
> -MLWP::UserAgent -e 'LWP::UserAgent->new(ssl_opts => {SSL_ca_file => 
> "/tmp/cert.pem"})->post("https://127.0.0.1:4433";, {data => "foo"})'
>
> and with the patch applied:
>
> % strace -y -ttt -etrace=select,read,write -o ~/tmp/strace.patched perl 
> -MLWP::UserAgent -e 'LWP::UserAgent->new(ssl_opts => {SSL_ca_file => 
> "/tmp/cert.pem"})->post("https://127.0.0.1:4433";, {data => "foo"})'
>
>
> Result:
>
> Terminal 1
>
> Before the patch:
>
> Using default temp DH parameters
> ACCEPT
> -----BEGIN SSL SESSION PARAMETERS-----
> MH0CAQECAgMEBAITAgQgr5ycydiRESVmPMev7McV6BfGSUqTodBWWKKM08FFNagE
> MOxvDk39ZVjQ0w/KpEvrm839LIrrWeigYwg3ofZJiFoT/Hu9VUbpxzDrx3EOTx3a
> oqEGAgRc11T3ogQCAhwgpAYEBAEAAACuBgIEaCDB8g==
> -----END SSL SESSION PARAMETERS-----
> Shared 
> ciphers:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA:AES128-GCM-SHA256:AES256-SHA:AES128-SHA:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:AES256-SHA256
> Signature Algorithms: 
> ECDSA+SHA256:ECDSA+SHA384:ECDSA+SHA512:Ed25519:Ed448:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA+SHA256:RSA+SHA384:RSA+SHA512:ECDSA+SHA224:RSA+SHA224:DSA+SHA224:DSA+SHA256:DSA+SHA384:DSA+SHA512
> Shared Signature Algorithms: 
> ECDSA+SHA256:ECDSA+SHA384:ECDSA+SHA512:Ed25519:Ed448:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA+SHA256:RSA+SHA384:RSA+SHA512:ECDSA+SHA224:RSA+SHA224
> Supported Elliptic Groups: X25519:P-256:X448:P-521:P-384
> Shared Elliptic groups: X25519:P-256:X448:P-521:P-384
> ---
> No server certificate CA names sent
> CIPHER is TLS_AES_256_GCM_SHA384
> Secure Renegotiation IS supported
> ERROR
> shutting down SSL
> CONNECTION CLOSED
>
>
> After the patch:
>
> -----BEGIN SSL SESSION PARAMETERS-----
> MH4CAQECAgMEBAITAgQgm+J0M38juLT4Xzeo8Vtx8JH/JPianuR8GUsyGMV3MfIE
> MIVGCLjmfpGauD0228pm7jpxjhdcZ1KvRW4ag/Xx9MifU4n/zUKVrnUQrivvcOoq
> caEGAgRc11UeogQCAhwgpAYEBAEAAACuBwIFAOBjKP4=
> -----END SSL SESSION PARAMETERS-----
> Shared 
> ciphers:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA:AES128-GCM-SHA256:AES256-SHA:AES128-SHA:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:AES256-SHA256
> Signature Algorithms: 
> ECDSA+SHA256:ECDSA+SHA384:ECDSA+SHA512:Ed25519:Ed448:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA+SHA256:RSA+SHA384:RSA+SHA512:ECDSA+SHA224:RSA+SHA224:DSA+SHA224:DSA+SHA256:DSA+SHA384:DSA+SHA512
> Shared Signature Algorithms: 
> ECDSA+SHA256:ECDSA+SHA384:ECDSA+SHA512:Ed25519:Ed448:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA-PSS+SHA256:RSA-PSS+SHA384:RSA-PSS+SHA512:RSA+SHA256:RSA+SHA384:RSA+SHA512:ECDSA+SHA224:RSA+SHA224
> Supported Elliptic Groups: X25519:P-256:X448:P-521:P-384
> Shared Elliptic groups: X25519:P-256:X448:P-521:P-384
> ---
> No server certificate CA names sent
> CIPHER is TLS_AES_256_GCM_SHA384
> Secure Renegotiation IS supported
> POST / HTTP/1.1
> TE: deflate,gzip;q=0.3
> Connection: TE, close
> Host: 127.0.0.1:4433
> User-Agent: libwww-perl/6.36
> Content-Length: 8
> Content-Type: application/x-www-form-urlencoded
>
> data=fooERROR
> shutting down SSL
> CONNECTION CLOSED
>
>
> So in the second case, the POST actually "arrives". And the strace
> logs (attached) also show the write() at the end.
>
> (As for the environment, this is Debian unstable with perl, LWP,
> IO::Socket::SSL, Net::SSLeay, openssl, … from todays unstable without
> any changes except for this specific patch.)
>
>
> I think this looks promising :)
> Guilhem, perl team people, what do you think?
>
>
> Cheers,
> gregor
>
>
> --
>  .''`.  https://info.comodo.priv.at -- Debian Developer https://www.debian.org
>  : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
>  `. `'  Member VIBE!AT & SPI Inc. -- Supporter Free Software Foundation Europe
>    `-   NP: Dire Straits: Planet Of New Orleans

> 1557615863.114228 read(3</lib/x86_64-linux-gnu/libdl-2.28.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\21\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.114592 read(3</lib/x86_64-linux-gnu/libm-2.28.so>, 
> "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\322\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.114891 read(3</lib/x86_64-linux-gnu/libpthread-2.28.so>, 
> "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@l\0\0\0\0\0\0"..., 832) = 832
> 1557615863.115201 read(3</lib/x86_64-linux-gnu/libc-2.28.so>, 
> "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260A\2\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.115614 read(3</lib/x86_64-linux-gnu/libcrypt-2.28.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\21\0\0\0\0\0\0"..., 832) 
> = 832
> 1557615863.117359 read(3</dev/urandom>, "\276\340u\24", 4) = 4
> 1557615863.119908 read(4</usr/share/perl5/LWP/UserAgent.pm>, "package 
> LWP::UserAgent;\n\nuse str"..., 8192) = 8192
> 1557615863.120705 read(5</usr/share/perl/5.28.1/strict.pm>, "package 
> strict;\n\n$strict::VERSIO"..., 8192) = 1606
> 1557615863.122426 read(5</usr/share/perl/5.28.1/base.pm>, "use 
> 5.008;\npackage base;\n\nuse st"..., 8192) = 8192
> 1557615863.125008 read(5</usr/share/perl/5.28.1/base.pm>, "ibute\n    # 
> (Public, Private, et"..., 8192) = 720
> 1557615863.126029 read(5</usr/share/perl5/LWP/MemberMixin.pm>, "package 
> LWP::MemberMixin;\n\nour $"..., 8192) = 875
> 1557615863.126966 read(5</usr/share/perl/5.28.1/Carp.pm>, "package Carp;\n\n{ 
> use 5.006; }\nus"..., 8192) = 8192
> 1557615863.127458 read(6</usr/share/perl/5.28.1/warnings.pm>, "# -*- 
> buffer-read-only: t -*-\n# "..., 8192) = 8192
> 1557615863.127951 read(6</usr/share/perl/5.28.1/warnings.pm>, 
> "recursion'\t\t\t\t=> \"\\x00\\x00\\x00\\x"..., 8192) = 8192
> 1557615863.128480 read(6</usr/share/perl/5.28.1/warnings.pm>, 
> "hadow'\t\t\t\t=> \"\\x00\\x00\\x00\\x00\\x"..., 8192) = 8133
> 1557615863.131313 read(6</usr/share/perl/5.28.1/overloading.pm>, "package 
> overloading;\nuse warning"..., 8192) = 964
> 1557615863.131843 read(5</usr/share/perl/5.28.1/Carp.pm>, "; # allow caller 
> to format refer"..., 8192) = 8192
> 1557615863.132869 read(5</usr/share/perl/5.28.1/Carp.pm>, "      # Perl 
> versions and platfo"..., 8192) = 8192
> 1557615863.134259 read(5</usr/share/perl/5.28.1/Carp.pm>, "the caller's 
> namespace.\n        "..., 8192) = 812
> 1557615863.135208 read(5</usr/share/perl/5.28.1/Exporter.pm>, "package 
> Exporter;\n\nrequire 5.006"..., 8192) = 2367
> 1557615863.137756 read(5</usr/share/perl5/HTTP/Request.pm>, "package 
> HTTP::Request;\n\nuse stri"..., 8192) = 8192
> 1557615863.138693 read(6</usr/share/perl5/HTTP/Message.pm>, "package 
> HTTP::Message;\n\nuse stri"..., 8192) = 8192
> 1557615863.142610 read(6</usr/share/perl5/HTTP/Message.pm>, "ss\" || $ce eq 
> \"x-compress\") {\n\t\t"..., 8192) = 8192
> 1557615863.144598 read(6</usr/share/perl5/HTTP/Message.pm>, "SCALAR\") {\n\t# 
> must recalculate n"..., 8192) = 8192
> 1557615863.145592 read(6</usr/share/perl5/HTTP/Message.pm>, 
> "HTTP::Message::decodable()\n\nThis"..., 8192) = 6155
> 1557615863.146380 read(6</usr/share/perl5/HTTP/Headers.pm>, "package 
> HTTP::Headers;\n\nuse stri"..., 8192) = 8192
> 1557615863.148348 read(6</usr/share/perl5/HTTP/Headers.pm>, 
> "{'content-type'};\n    $self->{'c"..., 8192) = 8192
> 1557615863.149395 read(6</usr/share/perl5/HTTP/Headers.pm>, "t in 
> the\nheader.  The field name"..., 8192) = 8192
> 1557615863.149576 read(6</usr/share/perl5/HTTP/Headers.pm>, 
> "eader(\":foo_bar\" => 1);\n\nThese f"..., 8192) = 517
> 1557615863.150417 read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm>, 
> "#\n#  Copyright (c) 1995-2001, Ra"..., 8192) = 8192
> 1557615863.152185 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm>, 
> "package Fcntl;\n\nuse strict;\nour("..., 8192) = 2156
> 1557615863.152523 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm>, "", 
> 8192) = 0
> 1557615863.153227 read(7</usr/share/perl/5.28.1/XSLoader.pm>, "# Generated 
> from XSLoader_pm.PL "..., 8192) = 3967
> 1557615863.154006 
> read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Fcntl/Fcntl.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320!\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.154997 read(7</usr/share/perl/5.28.1/Exporter/Heavy.pm>, "package 
> Exporter::Heavy;\n\nuse st"..., 8192) = 6406
> 1557615863.156437 read(7</usr/share/perl/5.28.1/Exporter/Heavy.pm>, "", 8192) 
> = 0
> 1557615863.157596 read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm>, 
> " network order.\n#\nsub nfreeze {\n"..., 8192) = 8192
> 1557615863.158609 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Storable/Storable.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P6\0\0\0\0\0\0"..., 832) = 832
> 1557615863.159201 read(6</usr/share/perl5/URI.pm>, "package URI;\n\nuse 
> strict;\nuse wa"..., 8192) = 8192
> 1557615863.159827 read(7</usr/share/perl5/URI/Escape.pm>, "package 
> URI::Escape;\n\nuse strict"..., 8192) = 7061
> 1557615863.160468 read(7</usr/share/perl5/URI/Escape.pm>, "", 8192) = 0
> 1557615863.161259 read(7</usr/share/perl/5.28.1/overload.pm>, "package 
> overload;\n\nour $VERSION "..., 8192) = 4441
> 1557615863.162312 read(8</usr/share/perl/5.28.1/warnings/register.pm>, 
> "package warnings::register;\n\nour"..., 8192) = 488
> 1557615863.164858 read(5</usr/share/perl5/HTTP/Request.pm>, "pplication/json; 
> charset=UTF-8']"..., 8192) = 556
> 1557615863.165344 read(5</usr/share/perl5/HTTP/Response.pm>, "package 
> HTTP::Response;\n\nuse str"..., 8192) = 8192
> 1557615863.165857 read(6</usr/share/perl5/HTTP/Status.pm>, "package 
> HTTP::Status;\n\nuse stric"..., 8192) = 8192
> 1557615863.166515 read(6</usr/share/perl5/HTTP/Status.pm>, "NOT_ALLOWED       
>        (405)\n "..., 8192) = 4288
> 1557615863.169664 read(5</usr/share/perl5/HTTP/Response.pm>, "  }\n\n=head1 
> DESCRIPTION\n\nThe C<H"..., 8192) = 8192
> 1557615863.169800 read(5</usr/share/perl5/HTTP/Response.pm>, "ty is no longer 
> fresh.\n\nOptions "..., 8192) = 547
> 1557615863.170319 read(5</usr/share/perl5/HTTP/Date.pm>, "package 
> HTTP::Date;\n\n$VERSION = "..., 8192) = 8192
> 1557615863.170910 read(6</usr/share/perl/5.28.1/vars.pm>, "package 
> vars;\n\nuse 5.006;\n\nour $"..., 8192) = 1149
> 1557615863.172977 read(5</usr/share/perl/5.28.1/Time/Local.pm>, "package 
> Time::Local;\n\nuse strict"..., 8192) = 8192
> 1557615863.173544 read(6</usr/share/perl/5.28.1/parent.pm>, "package 
> parent;\nuse strict;\nuse "..., 8192) = 478
> 1557615863.174304 read(6</usr/share/perl/5.28.1/constant.pm>, "package 
> constant;\nuse 5.008;\nuse"..., 8192) = 5737
> 1557615863.176250 read(5</usr/share/zoneinfo/Europe/Vienna>, 
> "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\7\0\0\0\0"..., 4096) = 2237
> 1557615863.176332 read(5</usr/share/zoneinfo/Europe/Vienna>, 
> "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\7\0\0\0\0"..., 4096) = 1419
> 1557615863.176992 read(5</usr/share/perl5/LWP.pm>, "package LWP;\n\nour 
> $VERSION = '6."..., 8192) = 8192
> 1557615863.177513 read(5</usr/share/perl5/LWP/Protocol.pm>, "package 
> LWP::Protocol;\n\nuse base"..., 8192) = 8192
> 1557615863.177991 read(6</usr/share/perl5/Try/Tiny.pm>, "package Try::Tiny; # 
> git descrip"..., 8192) = 8192
> 1557615863.178605 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Util.pm>, 
> "# Copyright (c) 2014 Paul Evans "..., 8192) = 4514
> 1557615863.178835 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Util.pm>, 
> "", 8192) = 0
> 1557615863.179257 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> "# Copyright (c) 1997-2009 Graham"..., 8192) = 8192
> 1557615863.179549 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> "ist> is\nempty then C<1> is retur"..., 8192) = 8192
> 1557615863.179661 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> " by a\nnumerical equality test. P"..., 8192) = 4742
> 1557615863.179746 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> "", 8192) = 0
> 1557615863.180062 
> read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/List/Util/Util.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p%\0\0\0\0\0\0"..., 832) = 832
> 1557615863.182431 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Scalar/Util.pm>, "# Copyright (c) 
> 1997-2007 Graham"..., 8192) = 8192
> 1557615863.183914 read(4</usr/share/perl5/LWP/UserAgent.pm>, "               
> $arg, $size, $sel"..., 8192) = 8192
> 1557615863.185104 read(4</usr/share/perl5/LWP/UserAgent.pm>, "e 
> HTTP::Request::Common;\n    my("..., 8192) = 8192
> 1557615863.186559 read(4</usr/share/perl5/LWP/UserAgent.pm>, " = shift;\n    
> }\n    return $old;"..., 8192) = 8192
> 1557615863.188163 read(4</usr/share/perl5/LWP/UserAgent.pm>, "der control of 
> that other guy.\n\t"..., 8192) = 8192
> 1557615863.189111 read(3</usr/share/perl5/HTTP/Config.pm>, "package 
> HTTP::Config;\n\nuse stric"..., 8192) = 8192
> 1557615863.190452 read(3</usr/share/perl5/HTTP/Config.pm>, "request' 
> method;\nand then the $u"..., 8192) = 3472
> 1557615863.191048 read(3</usr/share/perl5/HTTP/Request/Common.pm>, "package 
> HTTP::Request::Common;\n\n"..., 8192) = 8192
> 1557615863.192828 read(3</usr/share/perl5/HTTP/Request/Common.pm>, "head1 
> DESCRIPTION\n\nThis module p"..., 8192) = 7560
> 1557615863.193629 read(3</usr/share/perl5/URI/https.pm>, "package 
> URI::https;\n\nuse strict;"..., 8192) = 144
> 1557615863.194305 read(4</usr/share/perl5/URI/http.pm>, "package 
> URI::http;\n\nuse strict;\n"..., 8192) = 425
> 1557615863.194890 read(5</usr/share/perl5/URI/_server.pm>, "package 
> URI::_server;\n\nuse stric"..., 8192) = 3724
> 1557615863.195435 read(6</usr/share/perl5/URI/_generic.pm>, "package 
> URI::_generic;\n\nuse stri"..., 8192) = 5822
> 1557615863.196006 read(7</usr/share/perl5/URI/_query.pm>, "package 
> URI::_query;\n\nuse strict"..., 8192) = 2531
> 1557615863.197575 read(7</usr/share/perl5/URI/_query.pm>, "", 8192) = 0
> 1557615863.200425 read(6</usr/share/perl5/URI/_generic.pm>, "", 8192) = 0
> 1557615863.202353 read(5</usr/share/perl5/URI/_server.pm>, "", 8192) = 0
> 1557615863.202564 read(4</usr/share/perl5/URI/http.pm>, "", 8192) = 0
> 1557615863.202705 read(3</usr/share/perl5/URI/https.pm>, "", 8192) = 0
> 1557615863.203634 read(3</usr/share/perl5/LWP/Protocol/https.pm>, "package 
> LWP::Protocol::https;\n\nu"..., 8192) = 6322
> 1557615863.204893 read(3</usr/share/perl5/LWP/Protocol/http.pm>, "package 
> LWP::Protocol::http;\n\nus"..., 8192) = 8192
> 1557615863.206655 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Errno.pm>, "# 
> -*- buffer-read-only: t -*-\n#\n"..., 8192) = 4931
> 1557615863.207659 read(3</usr/share/perl5/LWP/Protocol/http.pm>, " if 
> ($!{EWOULDBLOCK} || $!{EAGAI"..., 8192) = 6819
> 1557615863.208792 read(3</usr/share/perl5/LWP/Protocol/http.pm>, "", 8192) = 0
> 1557615863.209206 read(3</usr/share/perl5/Net/HTTP.pm>, "package 
> Net::HTTP;\nour $VERSION "..., 8192) = 8192
> 1557615863.209583 read(3</usr/share/perl5/Net/HTTP.pm>, "se_headers() 
> call.\n\nThe return v"..., 8192) = 1950
> 1557615863.209910 read(3</usr/share/perl5/IO/Socket/IP.pm>, "#  You may 
> distribute under the "..., 8192) = 8192
> 1557615863.210425 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket.pm>, 
> "# IO::Socket.pm\n#\n# Copyright (c"..., 8192) = 8192
> 1557615863.210876 read(5</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm>, 
> "package IO::Handle;\n\nuse 5.008_0"..., 8192) = 8192
> 1557615863.211436 read(6</usr/share/perl/5.28.1/Symbol.pm>, "package 
> Symbol;\n\nBEGIN { require"..., 8192) = 2099
> 1557615863.212060 read(6</usr/share/perl/5.28.1/Symbol.pm>, "", 8192) = 0
> 1557615863.212626 read(6</usr/share/perl/5.28.1/SelectSaver.pm>, "package 
> SelectSaver;\n\nour $VERSI"..., 8192) = 344
> 1557615863.212851 read(6</usr/share/perl/5.28.1/SelectSaver.pm>, "", 8192) = 0
> 1557615863.213270 read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO.pm>, 
> "#\n\npackage IO;\n\nuse XSLoader ();"..., 8192) = 469
> 1557615863.213677 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/IO/IO.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000#\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.215758 read(5</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm>, 
> " }\n}\n\n1;\n", 8192) = 9
> 1557615863.215885 read(5</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm>, 
> "", 8192) = 0
> 1557615863.216545 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "package Socket;\n\nuse strict;\n{ u"..., 8192) = 8192
> 1557615863.216723 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "ort, $ip6_address, [$scope_id, ["..., 8192) = 8192
> 1557615863.216767 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "urn value will be a list; the fi"..., 8192) = 8192
> 1557615863.216902 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "SSIFNAME SO_PEERCRED SO_PROTOCOL"..., 8192) = 8192
> 1557615863.217723 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "RCONFIG we just presume the host"..., 8192) = 4294
> 1557615863.218397 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, "", 
> 8192) = 0
> 1557615863.218791 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Socket/Socket.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`3\0\0\0\0\0\0"..., 832) = 832
> 1557615863.221011 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket.pm>, 
> ": $sock->setsockopt(SOL_SOCKET,@"..., 8192) = 1242
> 1557615863.222006 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket/INET.pm>, "# 
> IO::Socket::INET.pm\n#\n# Copyri"..., 8192) = 7461
> 1557615863.224753 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket/UNIX.pm>, "# 
> IO::Socket::UNIX.pm\n#\n# Copyri"..., 8192) = 1336
> 1557615863.227128 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, 
> "package POSIX;\nuse strict;\nuse w"..., 8192) = 8192
> 1557615863.228830 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, " 
> {\n    usage \"printf(pattern, ar"..., 8192) = 8192
> 1557615863.229607 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, "_h 
> => [qw(\n        MSG_CTRUNC MS"..., 8192) = 3963
> 1557615863.231077 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, "", 
> 8192) = 0
> 1557615863.231354 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/POSIX/POSIX.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20l\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.233480 read(4</usr/share/perl/5.28.1/Tie/Hash.pm>, "package 
> Tie::Hash;\n\nour $VERSION"..., 8192) = 2037
> 1557615863.234379 read(4</usr/share/perl/5.28.1/Tie/Hash.pm>, "", 8192) = 0
> 1557615863.235751 read(4</etc/nsswitch.conf>, "# /etc/nsswitch.conf\n#\n# 
> Example"..., 4096) = 494
> 1557615863.235812 read(4</etc/nsswitch.conf>, "", 4096) = 0
> 1557615863.237705 read(4</lib/x86_64-linux-gnu/libnss_files-2.28.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0003\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.238153 read(4</etc/protocols>, "# Internet (IP) protocols\n#\n# 
> Up"..., 4096) = 2932
> 1557615863.238681 read(3</usr/share/perl5/IO/Socket/IP.pm>, "t options to 
> apply after the thr"..., 8192) = 8192
> 1557615863.239594 read(3</usr/share/perl5/IO/Socket/IP.pm>, "or\n         
> croak \"Expected 'Pee"..., 8192) = 8192
> 1557615863.241142 read(3</usr/share/perl5/IO/Socket/IP.pm>, 
> "elf}{io_socket_ip_connect_in_pro"..., 8192) = 8192
> 1557615863.242328 read(3</usr/share/perl5/IO/Socket/IP.pm>, "PROGRESS>, or 
> C<EWOULDBLOCK> on\n"..., 8192) = 7477
> 1557615863.242833 read(3</usr/share/perl5/IO/Socket/IP.pm>, "", 8192) = 0
> 1557615863.243357 read(3</usr/share/perl5/Net/HTTP/Methods.pm>, "package 
> Net::HTTP::Methods;\nour "..., 8192) = 8192
> 1557615863.244744 read(3</usr/share/perl5/Net/HTTP/Methods.pm>, ";\n\t$line 
> =~ s/(\\015?\\012)\\z// ||"..., 8192) = 8192
> 1557615863.246665 read(3</usr/share/perl5/Net/HTTP/Methods.pm>, "zip_ok;\n\n  
>   # Try to load IO::U"..., 8192) = 949
> 1557615863.247571 read(3</usr/share/perl5/Net/HTTPS.pm>, "package 
> Net::HTTPS;\nour $VERSION"..., 8192) = 3543
> 1557615863.248369 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "#vim: set sts=4 
> sw=4 ts=8 ai:\n#\n"..., 8192) = 8192
> 1557615863.249054 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "# Net::SSLeay.pm - Perl module f"..., 8192) = 8192
> 1557615863.249880 read(5</usr/share/perl/5.28.1/AutoLoader.pm>, "package 
> AutoLoader;\n\nuse strict;"..., 8192) = 5487
> 1557615863.250983 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/autosplit.ix>, "# 
> Index created by AutoSplit for"..., 8192) = 1581
> 1557615863.251304 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/autosplit.ix>, 
> "", 8192) = 0
> 1557615863.251447 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "ID_rc2_ecb                      "..., 8192) = 8192
> 1557615863.251600 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "ON\n NID_description             "..., 8192) = 8192
> 1557615863.251977 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "Loader::AUTOLOAD;\n\t}\n\telse {\n\t  "..., 8192) = 8192
> 1557615863.252805 read(5</usr/share/perl/5.28.1/bytes.pm>, "package 
> bytes;\n\nour $VERSION = '"..., 8192) = 447
> 1557615863.253490 
> read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/SSLeay.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\350\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.253901 read(4</usr/lib/x86_64-linux-gnu/libssl.so.1.1>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\364\1\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.254171 read(4</usr/lib/x86_64-linux-gnu/libcrypto.so.1.1>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\360\10\0\0\0\0\0"..., 832) 
> = 832
> 1557615863.257086 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "\nuse strict;\nuse warnings;\npacka"..., 8192) = 8192
> 1557615863.257909 read(5</usr/share/perl5/URI/_idna.pm>, "package 
> URI::_idna;\n\n# This modu"..., 8192) = 2079
> 1557615863.258396 read(6</usr/share/perl5/URI/_punycode.pm>, "package 
> URI::_punycode;\n\nuse str"..., 8192) = 5622
> 1557615863.259017 read(7</usr/share/perl/5.28.1/integer.pm>, "package 
> integer;\n\nour $VERSION ="..., 8192) = 172
> 1557615863.259172 read(7</usr/share/perl/5.28.1/integer.pm>, "", 8192) = 0
> 1557615863.260695 read(5</usr/share/perl5/URI/_idna.pm>, "", 8192) = 0
> 1557615863.261577 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, " 
> my $resp = LWP::UserAgent->new-"..., 8192) = 8192
> 1557615863.262007 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "r...@uninett.no>\nbv\n\n// bw : http"..., 8192) = 8192
> 1557615863.262186 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "hu\nfilm.hu\nforum.hu\ngames.hu\nhot"..., 8192) = 8192
> 1557615863.262343 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "!city.nagoya.jp\n!city.sapporo.jp"..., 8192) = 8192
> 1557615863.262549 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "jp\nimakane.hokkaido.jp\nishikari."..., 8192) = 8192
> 1557615863.262682 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "a.miyagi.jp\nosaki.miyagi.jp\nrifu"..., 8192) = 8192
> 1557615863.262808 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "higa.jp\nomihachiman.shiga.jp\nots"..., 8192) = 8192
> 1557615863.262877 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "\nlk\ngov.lk\nsch.lk\nnet.lk\nint.lk\n"..., 8192) = 8192
> 1557615863.262955 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "aska.museum\nneues.museum\nnewhamp"..., 8192) = 8192
> 1557615863.263092 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> ".no\nxn--finny-yua.no\nfitjar.no\nf"..., 8192) = 8192
> 1557615863.263233 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "k\ngov.pk\ngob.pk\ngok.pk\ngon.pk\ngo"..., 8192) = 8192
> 1557615863.263380 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "edia.org/wiki/.tw\ntw\nedu.tw\ngov."..., 8192) = 8192
> 1557615863.263516 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "\", Arabic) : IN\n// India\nxn--mgb"..., 8192) = 8192
> 1557615863.263641 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "t\n\n// author : 2014-12-18 Amazon"..., 8192) = 8192
> 1557615863.263709 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "ommunity : 2013-12-05 Fox Orchar"..., 8192) = 8192
> 1557615863.263778 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "014-12-18 Foggy Farms, LLC\nfootb"..., 8192) = 8192
> 1557615863.263904 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, "// 
> jnj : 2015-06-18 Johnson & Jo"..., 8192) = 8192
> 1557615863.263972 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "tual : 2015-04-02 Northwestern M"..., 8192) = 8192
> 1557615863.264135 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "ent (HK) Limited\nrichardli\n\n// r"..., 8192) = 8192
> 1557615863.264307 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "aceutical Industries Limited\ntev"..., 8192) = 8192
> 1557615863.264449 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, "g 
> : 2013-11-14 Public Interest R"..., 8192) = 8192
> 1557615863.264580 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "mazonaws.com\ns3-ca-central-1.ama"..., 8192) = 8192
> 1557615863.264755 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "ojo.org\ndoes-it.net\ndoesntexist."..., 8192) = 8192
> 1557615863.264921 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "uk>\nservice.gov.uk\n\n// GitHub, I"..., 8192) = 8192
> 1557615863.265079 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "tsystemscloud.com>\noutsystemsclo"..., 8192) = 8062
> 1557615863.265385 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, "", 
> 8192) = 0
> 1557615863.266122 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm>, "# 
> This file was created by confi"..., 8192) = 3367
> 1557615863.266641 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm>, 
> "", 8192) = 0
> 1557615863.267055 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "# This file 
> was created by confi"..., 8192) = 8192
> 1557615863.267666 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, 
> "-linux-gnu/perl5/5.28 -Dsitepref"..., 8192) = 8192
> 1557615863.267759 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "N__=1234 
> __ORDER_PDP_ENDIAN__=34"..., 8192) = 8192
> 1557615863.267892 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, 
> "def'\nd_libname_unique='undef'\nd_"..., 8192) = 8192
> 1557615863.268010 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "s/Install 
> ExtUtils/MakeMaker Ext"..., 8192) = 8192
> 1557615863.268116 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, 
> "ib/x86_64-linux-gnu/libgdbm.so /"..., 8192) = 8192
> 1557615863.268223 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "time.h 
> '\ntimetype='time_t'\ntmpna"..., 8192) = 4949
> 1557615863.268829 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "", 8192) = 0
> 1557615863.269239 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl>, 
> "################################"..., 8192) = 409
> 1557615863.269326 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl>, "", 8192) = 0
> 1557615863.270294 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "hers.\n\t'ECDHE-RSA-AES256-GCM-SHA"..., 8192) = 8192
> 1557615863.271592 read(3</usr/share/perl5/IO/Socket/SSL.pm>, " 
> $CHECK_SSL_PATH = sub {\n    my "..., 8192) = 8192
> 1557615863.272823 read(3</usr/share/perl5/IO/Socket/SSL.pm>, " my $self = 
> shift;\n    my $args "..., 8192) = 8192
> 1557615863.274024 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "urs when a new 
> client connects t"..., 8192) = 8192
> 1557615863.275226 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "->SUPER::syswrite(@_);\n}\n\nsub pr"..., 8192) = 8192
> 1557615863.276614 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "t_handshake ) 
> {\n\t# if we have no"..., 8192) = 8192
> 1557615863.277763 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "sue17997#msg194950\n\t    if ( $wt"..., 8192) = 8192
> 1557615863.279555 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "\n    }\n    
> sub set_server_defaul"..., 8192) = 8192
> 1557615863.281271 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "_version 
> specified\");\n\tmy $not ="..., 8192) = 8192
> 1557615863.282219 read(3</usr/share/perl5/IO/Socket/SSL.pm>, " as in the 
> PKCS12 file). This is"..., 8192) = 8192
> 1557615863.283519 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "_cb($_,$status_cb) for (values %"..., 8192) = 8192
> 1557615863.285334 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "ject: \".\n\t   
>  join(\"; \",@{$todo-"..., 8192) = 4099
> 1557615863.287438 read(3</etc/ssl/openssl.cnf>, "#\n# OpenSSL example 
> configuratio"..., 4096) = 4096
> 1557615863.287630 read(3</etc/ssl/openssl.cnf>, "F8Strings).\n# MASK:XXXX a 
> litera"..., 4096) = 4096
> 1557615863.287772 read(3</etc/ssl/openssl.cnf>, "icConstraints=CA:FALSE\n\n# 
> Here a"..., 4096) = 2926
> 1557615863.287833 read(3</etc/ssl/openssl.cnf>, "", 4096) = 0
> 1557615863.288407 
> read(3</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/randomize.al>, "# 
> NOTE: Derived from blib/lib/Ne"..., 8192) = 1027
> 1557615863.288663 
> read(3</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/randomize.al>, 
> "", 8192) = 0
> 1557615863.288837 read(3</dev/urandom>, "P\n\356\360", 4) = 4
> 1557615863.289349 read(3</dev/urandom>, 
> "\306l\236t\304\232V\237\320f\223C\200\244\367\234m'e\374OPY\315\204m\0357\225eH\226"...,
>  64) = 64
> 1557615863.290926 read(3</tmp/cert.pem>, "-----BEGIN 
> CERTIFICATE-----\nMIID"..., 4096) = 1115
> 1557615863.291126 read(3</tmp/cert.pem>, "", 4096) = 0
> 1557615863.291640 read(3</etc/protocols>, "# Internet (IP) protocols\n#\n# 
> Up"..., 4096) = 2932
> 1557615863.292320 select(8, NULL, [3<socket:[78524773]>], 
> [3<socket:[78524773]>], {tv_sec=180, tv_usec=0}) = 1 (left {tv_sec=179, 
> tv_usec=999996})
> 1557615863.292821 write(3<socket:[78524773]>, 
> "\26\3\1\2\0\1\0\1\374\3\3\325\256>\301|\267f\320\263\230 
> \30\355hx\273\360\245\312\377q"..., 517) = 517
> 1557615863.292937 read(3<socket:[78524773]>, 0x55b40b0c99d3, 5) = -1 EAGAIN 
> (Resource temporarily unavailable)
> 1557615863.293023 select(8, [3<socket:[78524773]>], NULL, NULL, {tv_sec=180, 
> tv_usec=0}) = 1 (in [3], left {tv_sec=179, tv_usec=995327})
> 1557615863.297851 read(3<socket:[78524773]>, "\26\3\3\0z", 5) = 5
> 1557615863.297929 read(3<socket:[78524773]>, 
> "\2\0\0v\3\3\265$7\345N\345\214\303\22\v<\0\32\307B\365\307R\256\205\31\324\351\334~\370"...,
>  122) = 122
> 1557615863.298261 read(3<socket:[78524773]>, "\24\3\3\0\1", 5) = 5
> 1557615863.298335 read(3<socket:[78524773]>, "\1", 1) = 1
> 1557615863.298396 read(3<socket:[78524773]>, "\27\3\3\0\27", 5) = 5
> 1557615863.298455 read(3<socket:[78524773]>, 
> "\332O\321\354\312\314\347/\241\222\262\322B\357+</\10\27+\241\302<", 23) = 23
> 1557615863.298544 read(3<socket:[78524773]>, "\27\3\3\3+", 5) = 5
> 1557615863.298583 read(3<socket:[78524773]>, "\5z\245\314*\nP\347\267\230 
> \303\36\2030\3\271\353\22\326,\20\332\323\211{D\fm\27\311\267"..., 811) = 811
> 1557615863.298812 read(3<socket:[78524773]>, "\27\3\3\1\31", 5) = 5
> 1557615863.298890 read(3<socket:[78524773]>, 
> "\244\22\270kL\341\276\311)\246\4\224\273g\221\223zZ\263\32x\347T\242\340\232\21\4\17\376\31\26"...,
>  281) = 281
> 1557615863.299089 read(3<socket:[78524773]>, "\27\3\3\0E", 5) = 5
> 1557615863.299157 read(3<socket:[78524773]>, 
> "6\244\205j\363\20\321y\201\210\2\333\241V\251*\304\332\244\344\237cR\254\253\330*\365\345\r\214\337"...,
>  69) = 69
> 1557615863.299355 write(3<socket:[78524773]>, "\24\3\3\0\1\1\27\3\3\0E 
> \n\370\331+\214\267Wt\f\314\36d\36\232\251g\227\205?\26"..., 80) = 80
> 1557615863.300599 read(4</usr/share/perl/5.28.1/IO/Uncompress/Gunzip.pm>, 
> "\npackage IO::Uncompress::Gunzip "..., 8192) = 8192
> 1557615863.301286 read(5</usr/share/perl/5.28.1/IO/Uncompress/RawInflate.pm>, 
> "package IO::Uncompress::RawInfla"..., 8192) = 8192
> 1557615863.301844 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm>, 
> "\npackage Compress::Raw::Zlib;\n\nr"..., 8192) = 8192
> 1557615863.304607 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm>, " if 
> $validate && $value !~ /^\\d+"..., 8192) = 8192
> 1557615863.307088 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm>, "    
> croak \"Compress::Raw::Zlib::"..., 8192) = 8192
> 1557615863.307922 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Compress/Raw/Zlib/Zlib.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260$\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.308460 read(6</lib/x86_64-linux-gnu/libz.so.1.2.11>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320#\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.310307 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "package IO::Compress::Base::Comm"..., 8192) = 8192
> 1557615863.311456 read(7</usr/share/perl/5.28.1/File/GlobMapper.pm>, "package 
> File::GlobMapper;\n\nuse s"..., 8192) = 8192
> 1557615863.312698 read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Glob.pm>, 
> "package File::Glob;\n\nuse strict;"..., 8192) = 2045
> 1557615863.314608 
> read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/File/Glob/Glob.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20$\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615863.321522 read(7</usr/share/perl/5.28.1/utf8.pm>, "package 
> utf8;\n\n$utf8::hint_bits "..., 8192) = 342
> 1557615863.324426 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "urn $obj ;\n}\n\nsub IO::Compress::"..., 8192) = 8192
> 1557615863.325982 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "print \"PARSE $type $key $value $"..., 8192) = 6715
> 1557615863.327503 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "", 8192) = 0
> 1557615863.328363 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, 
> "\npackage IO::Uncompress::Base ;\n"..., 8192) = 8192
> 1557615863.329075 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm>, 
> "#\n\npackage IO::File;\n\nuse 5.008_"..., 8192) = 1636
> 1557615863.329684 
> read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm>, "#\n\npackage 
> IO::Seekable;\n\nuse 5."..., 8192) = 642
> 1557615863.330017 
> read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm>, "", 8192) = 0
> 1557615863.330526 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm>, 
> "", 8192) = 0
> 1557615863.332221 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "     
>    'transparent'   => [IO::"..., 8192) = 8192
> 1557615863.333173 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "  
> }\n\n        return scalar @{ $x"..., 8192) = 8192
> 1557615863.334324 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "     
>              \"$trailer_size"..., 8192) = 8192
> 1557615863.335627 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "     
> return substr($$buf, $offse"..., 8192) = 5323
> 1557615863.336985 
> read(6</usr/share/perl/5.28.1/IO/Uncompress/Adapter/Inflate.pm>, "package 
> IO::Uncompress::Adapter:"..., 8192) = 3279
> 1557615863.338554 read(5</usr/share/perl/5.28.1/IO/Uncompress/RawInflate.pm>, 
> "ift ;\n    my ($def, $status) = *"..., 8192) = 8192
> 1557615863.339375 
> read(5</usr/share/perl/5.28.1/IO/Compress/Gzip/Constants.pm>, "package 
> IO::Compress::Gzip::Cons"..., 8192) = 3903
> 1557615863.340382 
> read(5</usr/share/perl/5.28.1/IO/Compress/Gzip/Constants.pm>, "", 8192) = 0
> 1557615863.341083 read(5</usr/share/perl/5.28.1/IO/Compress/Zlib/Extra.pm>, 
> "package IO::Compress::Zlib::Extr"..., 8192) = 5711
> 1557615863.343141 select(8, [3<socket:[78524773]>], [3<socket:[78524773]>], 
> NULL, {tv_sec=180, tv_usec=0}) = 2 (in [3], out [3], left {tv_sec=179, 
> tv_usec=999996})
> 1557615863.343321 read(3<socket:[78524773]>, "\27\3\3\0\352", 5) = 5
> 1557615863.343399 read(3<socket:[78524773]>, 
> "\5?MD\271\327\362\202\22?\260w\250\243>ovgt\221\316\f\4-\21.\315(\370C\323\270"...,
>  234) = 234
> 1557615863.343583 read(3<socket:[78524773]>, "\27\3\3\0\352", 5) = 5
> 1557615863.343664 read(3<socket:[78524773]>, 
> "\342\367\375\237\v\320\207\217K_\264j\2o{\211\17\276#\370\26gb!\261~^\236<>\227\317"...,
>  234) = 234
> 1557615863.343783 read(3<socket:[78524773]>, 0x55b40b0c99d3, 5) = ? 
> ERESTARTSYS (To be restarted if SA_RESTART is set)
> 1557615868.455077 --- SIGINT {si_signo=SIGINT, si_code=SI_KERNEL} ---
> 1557615868.458847 +++ killed by SIGINT +++

> 1557615902.036432 read(3</lib/x86_64-linux-gnu/libdl-2.28.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\21\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.036970 read(3</lib/x86_64-linux-gnu/libm-2.28.so>, 
> "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\322\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.037337 read(3</lib/x86_64-linux-gnu/libpthread-2.28.so>, 
> "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@l\0\0\0\0\0\0"..., 832) = 832
> 1557615902.037812 read(3</lib/x86_64-linux-gnu/libc-2.28.so>, 
> "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260A\2\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.038275 read(3</lib/x86_64-linux-gnu/libcrypt-2.28.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\21\0\0\0\0\0\0"..., 832) 
> = 832
> 1557615902.039906 read(3</dev/urandom>, "]\214\34b", 4) = 4
> 1557615902.042793 read(4</usr/share/perl5/LWP/UserAgent.pm>, "package 
> LWP::UserAgent;\n\nuse str"..., 8192) = 8192
> 1557615902.043770 read(5</usr/share/perl/5.28.1/strict.pm>, "package 
> strict;\n\n$strict::VERSIO"..., 8192) = 1606
> 1557615902.045167 read(5</usr/share/perl/5.28.1/base.pm>, "use 
> 5.008;\npackage base;\n\nuse st"..., 8192) = 8192
> 1557615902.046544 read(5</usr/share/perl/5.28.1/base.pm>, "ibute\n    # 
> (Public, Private, et"..., 8192) = 720
> 1557615902.047312 read(5</usr/share/perl5/LWP/MemberMixin.pm>, "package 
> LWP::MemberMixin;\n\nour $"..., 8192) = 875
> 1557615902.048139 read(5</usr/share/perl/5.28.1/Carp.pm>, "package Carp;\n\n{ 
> use 5.006; }\nus"..., 8192) = 8192
> 1557615902.048743 read(6</usr/share/perl/5.28.1/warnings.pm>, "# -*- 
> buffer-read-only: t -*-\n# "..., 8192) = 8192
> 1557615902.049295 read(6</usr/share/perl/5.28.1/warnings.pm>, 
> "recursion'\t\t\t\t=> \"\\x00\\x00\\x00\\x"..., 8192) = 8192
> 1557615902.049732 read(6</usr/share/perl/5.28.1/warnings.pm>, 
> "hadow'\t\t\t\t=> \"\\x00\\x00\\x00\\x00\\x"..., 8192) = 8133
> 1557615902.053203 read(6</usr/share/perl/5.28.1/overloading.pm>, "package 
> overloading;\nuse warning"..., 8192) = 964
> 1557615902.053782 read(5</usr/share/perl/5.28.1/Carp.pm>, "; # allow caller 
> to format refer"..., 8192) = 8192
> 1557615902.055118 read(5</usr/share/perl/5.28.1/Carp.pm>, "      # Perl 
> versions and platfo"..., 8192) = 8192
> 1557615902.056479 read(5</usr/share/perl/5.28.1/Carp.pm>, "the caller's 
> namespace.\n        "..., 8192) = 812
> 1557615902.057158 read(5</usr/share/perl/5.28.1/Exporter.pm>, "package 
> Exporter;\n\nrequire 5.006"..., 8192) = 2367
> 1557615902.058140 read(5</usr/share/perl5/HTTP/Request.pm>, "package 
> HTTP::Request;\n\nuse stri"..., 8192) = 8192
> 1557615902.058486 read(6</usr/share/perl5/HTTP/Message.pm>, "package 
> HTTP::Message;\n\nuse stri"..., 8192) = 8192
> 1557615902.059956 read(6</usr/share/perl5/HTTP/Message.pm>, "ss\" || $ce eq 
> \"x-compress\") {\n\t\t"..., 8192) = 8192
> 1557615902.061401 read(6</usr/share/perl5/HTTP/Message.pm>, "SCALAR\") {\n\t# 
> must recalculate n"..., 8192) = 8192
> 1557615902.062122 read(6</usr/share/perl5/HTTP/Message.pm>, 
> "HTTP::Message::decodable()\n\nThis"..., 8192) = 6155
> 1557615902.062504 read(6</usr/share/perl5/HTTP/Headers.pm>, "package 
> HTTP::Headers;\n\nuse stri"..., 8192) = 8192
> 1557615902.064869 read(6</usr/share/perl5/HTTP/Headers.pm>, 
> "{'content-type'};\n    $self->{'c"..., 8192) = 8192
> 1557615902.066497 read(6</usr/share/perl5/HTTP/Headers.pm>, "t in 
> the\nheader.  The field name"..., 8192) = 8192
> 1557615902.066723 read(6</usr/share/perl5/HTTP/Headers.pm>, 
> "eader(\":foo_bar\" => 1);\n\nThese f"..., 8192) = 517
> 1557615902.067619 read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm>, 
> "#\n#  Copyright (c) 1995-2001, Ra"..., 8192) = 8192
> 1557615902.069119 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm>, 
> "package Fcntl;\n\nuse strict;\nour("..., 8192) = 2156
> 1557615902.069901 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/Fcntl.pm>, "", 
> 8192) = 0
> 1557615902.070349 read(7</usr/share/perl/5.28.1/XSLoader.pm>, "# Generated 
> from XSLoader_pm.PL "..., 8192) = 3967
> 1557615902.071355 
> read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Fcntl/Fcntl.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320!\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.072237 read(7</usr/share/perl/5.28.1/Exporter/Heavy.pm>, "package 
> Exporter::Heavy;\n\nuse st"..., 8192) = 6406
> 1557615902.074528 read(7</usr/share/perl/5.28.1/Exporter/Heavy.pm>, "", 8192) 
> = 0
> 1557615902.077259 read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Storable.pm>, 
> " network order.\n#\nsub nfreeze {\n"..., 8192) = 8192
> 1557615902.079046 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Storable/Storable.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P6\0\0\0\0\0\0"..., 832) = 832
> 1557615902.080026 read(6</usr/share/perl5/URI.pm>, "package URI;\n\nuse 
> strict;\nuse wa"..., 8192) = 8192
> 1557615902.080668 read(7</usr/share/perl5/URI/Escape.pm>, "package 
> URI::Escape;\n\nuse strict"..., 8192) = 7061
> 1557615902.081608 read(7</usr/share/perl5/URI/Escape.pm>, "", 8192) = 0
> 1557615902.082277 read(7</usr/share/perl/5.28.1/overload.pm>, "package 
> overload;\n\nour $VERSION "..., 8192) = 4441
> 1557615902.083286 read(8</usr/share/perl/5.28.1/warnings/register.pm>, 
> "package warnings::register;\n\nour"..., 8192) = 488
> 1557615902.085861 read(5</usr/share/perl5/HTTP/Request.pm>, "pplication/json; 
> charset=UTF-8']"..., 8192) = 556
> 1557615902.086236 read(5</usr/share/perl5/HTTP/Response.pm>, "package 
> HTTP::Response;\n\nuse str"..., 8192) = 8192
> 1557615902.086634 read(6</usr/share/perl5/HTTP/Status.pm>, "package 
> HTTP::Status;\n\nuse stric"..., 8192) = 8192
> 1557615902.087185 read(6</usr/share/perl5/HTTP/Status.pm>, "NOT_ALLOWED       
>        (405)\n "..., 8192) = 4288
> 1557615902.090190 read(5</usr/share/perl5/HTTP/Response.pm>, "  }\n\n=head1 
> DESCRIPTION\n\nThe C<H"..., 8192) = 8192
> 1557615902.090353 read(5</usr/share/perl5/HTTP/Response.pm>, "ty is no longer 
> fresh.\n\nOptions "..., 8192) = 547
> 1557615902.090848 read(5</usr/share/perl5/HTTP/Date.pm>, "package 
> HTTP::Date;\n\n$VERSION = "..., 8192) = 8192
> 1557615902.091376 read(6</usr/share/perl/5.28.1/vars.pm>, "package 
> vars;\n\nuse 5.006;\n\nour $"..., 8192) = 1149
> 1557615902.094054 read(5</usr/share/perl/5.28.1/Time/Local.pm>, "package 
> Time::Local;\n\nuse strict"..., 8192) = 8192
> 1557615902.094614 read(6</usr/share/perl/5.28.1/parent.pm>, "package 
> parent;\nuse strict;\nuse "..., 8192) = 478
> 1557615902.095467 read(6</usr/share/perl/5.28.1/constant.pm>, "package 
> constant;\nuse 5.008;\nuse"..., 8192) = 5737
> 1557615902.098271 read(5</usr/share/zoneinfo/Europe/Vienna>, 
> "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\7\0\0\0\0"..., 4096) = 2237
> 1557615902.098348 read(5</usr/share/zoneinfo/Europe/Vienna>, 
> "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\7\0\0\0\7\0\0\0\0"..., 4096) = 1419
> 1557615902.098807 read(5</usr/share/perl5/LWP.pm>, "package LWP;\n\nour 
> $VERSION = '6."..., 8192) = 8192
> 1557615902.099255 read(5</usr/share/perl5/LWP/Protocol.pm>, "package 
> LWP::Protocol;\n\nuse base"..., 8192) = 8192
> 1557615902.099687 read(6</usr/share/perl5/Try/Tiny.pm>, "package Try::Tiny; # 
> git descrip"..., 8192) = 8192
> 1557615902.100360 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Util.pm>, 
> "# Copyright (c) 2014 Paul Evans "..., 8192) = 4514
> 1557615902.100577 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/Sub/Util.pm>, 
> "", 8192) = 0
> 1557615902.100997 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> "# Copyright (c) 1997-2009 Graham"..., 8192) = 8192
> 1557615902.101296 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> "ist> is\nempty then C<1> is retur"..., 8192) = 8192
> 1557615902.101386 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> " by a\nnumerical equality test. P"..., 8192) = 4742
> 1557615902.101448 read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/List/Util.pm>, 
> "", 8192) = 0
> 1557615902.101719 
> read(7</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/List/Util/Util.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p%\0\0\0\0\0\0"..., 832) = 832
> 1557615902.103842 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Scalar/Util.pm>, "# Copyright (c) 
> 1997-2007 Graham"..., 8192) = 8192
> 1557615902.105756 read(4</usr/share/perl5/LWP/UserAgent.pm>, "               
> $arg, $size, $sel"..., 8192) = 8192
> 1557615902.107249 read(4</usr/share/perl5/LWP/UserAgent.pm>, "e 
> HTTP::Request::Common;\n    my("..., 8192) = 8192
> 1557615902.109173 read(4</usr/share/perl5/LWP/UserAgent.pm>, " = shift;\n    
> }\n    return $old;"..., 8192) = 8192
> 1557615902.110768 read(4</usr/share/perl5/LWP/UserAgent.pm>, "der control of 
> that other guy.\n\t"..., 8192) = 8192
> 1557615902.112074 read(3</usr/share/perl5/HTTP/Config.pm>, "package 
> HTTP::Config;\n\nuse stric"..., 8192) = 8192
> 1557615902.113461 read(3</usr/share/perl5/HTTP/Config.pm>, "request' 
> method;\nand then the $u"..., 8192) = 3472
> 1557615902.114130 read(3</usr/share/perl5/HTTP/Request/Common.pm>, "package 
> HTTP::Request::Common;\n\n"..., 8192) = 8192
> 1557615902.115639 read(3</usr/share/perl5/HTTP/Request/Common.pm>, "head1 
> DESCRIPTION\n\nThis module p"..., 8192) = 7560
> 1557615902.116132 read(3</usr/share/perl5/URI/https.pm>, "package 
> URI::https;\n\nuse strict;"..., 8192) = 144
> 1557615902.116756 read(4</usr/share/perl5/URI/http.pm>, "package 
> URI::http;\n\nuse strict;\n"..., 8192) = 425
> 1557615902.117168 read(5</usr/share/perl5/URI/_server.pm>, "package 
> URI::_server;\n\nuse stric"..., 8192) = 3724
> 1557615902.117567 read(6</usr/share/perl5/URI/_generic.pm>, "package 
> URI::_generic;\n\nuse stri"..., 8192) = 5822
> 1557615902.118035 read(7</usr/share/perl5/URI/_query.pm>, "package 
> URI::_query;\n\nuse strict"..., 8192) = 2531
> 1557615902.119198 read(7</usr/share/perl5/URI/_query.pm>, "", 8192) = 0
> 1557615902.120860 read(6</usr/share/perl5/URI/_generic.pm>, "", 8192) = 0
> 1557615902.122213 read(5</usr/share/perl5/URI/_server.pm>, "", 8192) = 0
> 1557615902.122539 read(4</usr/share/perl5/URI/http.pm>, "", 8192) = 0
> 1557615902.122871 read(3</usr/share/perl5/URI/https.pm>, "", 8192) = 0
> 1557615902.123869 read(3</usr/share/perl5/LWP/Protocol/https.pm>, "package 
> LWP::Protocol::https;\n\nu"..., 8192) = 6322
> 1557615902.124833 read(3</usr/share/perl5/LWP/Protocol/http.pm>, "package 
> LWP::Protocol::http;\n\nus"..., 8192) = 8192
> 1557615902.126387 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Errno.pm>, "# 
> -*- buffer-read-only: t -*-\n#\n"..., 8192) = 4931
> 1557615902.127328 read(3</usr/share/perl5/LWP/Protocol/http.pm>, " if 
> ($!{EWOULDBLOCK} || $!{EAGAI"..., 8192) = 6903
> 1557615902.128405 read(3</usr/share/perl5/LWP/Protocol/http.pm>, "", 8192) = 0
> 1557615902.128985 read(3</usr/share/perl5/Net/HTTP.pm>, "package 
> Net::HTTP;\nour $VERSION "..., 8192) = 8192
> 1557615902.129387 read(3</usr/share/perl5/Net/HTTP.pm>, "se_headers() 
> call.\n\nThe return v"..., 8192) = 1950
> 1557615902.129686 read(3</usr/share/perl5/IO/Socket/IP.pm>, "#  You may 
> distribute under the "..., 8192) = 8192
> 1557615902.130096 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket.pm>, 
> "# IO::Socket.pm\n#\n# Copyright (c"..., 8192) = 8192
> 1557615902.130410 read(5</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm>, 
> "package IO::Handle;\n\nuse 5.008_0"..., 8192) = 8192
> 1557615902.130766 read(6</usr/share/perl/5.28.1/Symbol.pm>, "package 
> Symbol;\n\nBEGIN { require"..., 8192) = 2099
> 1557615902.131328 read(6</usr/share/perl/5.28.1/Symbol.pm>, "", 8192) = 0
> 1557615902.131808 read(6</usr/share/perl/5.28.1/SelectSaver.pm>, "package 
> SelectSaver;\n\nour $VERSI"..., 8192) = 344
> 1557615902.132055 read(6</usr/share/perl/5.28.1/SelectSaver.pm>, "", 8192) = 0
> 1557615902.132382 read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO.pm>, 
> "#\n\npackage IO;\n\nuse XSLoader ();"..., 8192) = 469
> 1557615902.132819 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/IO/IO.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000#\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.134759 read(5</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm>, 
> " }\n}\n\n1;\n", 8192) = 9
> 1557615902.134901 read(5</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Handle.pm>, 
> "", 8192) = 0
> 1557615902.135513 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "package Socket;\n\nuse strict;\n{ u"..., 8192) = 8192
> 1557615902.135698 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "ort, $ip6_address, [$scope_id, ["..., 8192) = 8192
> 1557615902.135741 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "urn value will be a list; the fi"..., 8192) = 8192
> 1557615902.135874 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "SSIFNAME SO_PEERCRED SO_PROTOCOL"..., 8192) = 8192
> 1557615902.136890 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, 
> "RCONFIG we just presume the host"..., 8192) = 4294
> 1557615902.137864 read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/Socket.pm>, "", 
> 8192) = 0
> 1557615902.138456 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Socket/Socket.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`3\0\0\0\0\0\0"..., 832) = 832
> 1557615902.140546 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket.pm>, 
> ": $sock->setsockopt(SOL_SOCKET,@"..., 8192) = 1242
> 1557615902.141206 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket/INET.pm>, "# 
> IO::Socket::INET.pm\n#\n# Copyri"..., 8192) = 7461
> 1557615902.143847 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Socket/UNIX.pm>, "# 
> IO::Socket::UNIX.pm\n#\n# Copyri"..., 8192) = 1336
> 1557615902.145308 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, 
> "package POSIX;\nuse strict;\nuse w"..., 8192) = 8192
> 1557615902.146204 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, " 
> {\n    usage \"printf(pattern, ar"..., 8192) = 8192
> 1557615902.146659 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, "_h 
> => [qw(\n        MSG_CTRUNC MS"..., 8192) = 3963
> 1557615902.147592 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/POSIX.pm>, "", 
> 8192) = 0
> 1557615902.147958 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/POSIX/POSIX.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20l\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.149467 read(4</usr/share/perl/5.28.1/Tie/Hash.pm>, "package 
> Tie::Hash;\n\nour $VERSION"..., 8192) = 2037
> 1557615902.150099 read(4</usr/share/perl/5.28.1/Tie/Hash.pm>, "", 8192) = 0
> 1557615902.151068 read(4</etc/nsswitch.conf>, "# /etc/nsswitch.conf\n#\n# 
> Example"..., 4096) = 494
> 1557615902.151098 read(4</etc/nsswitch.conf>, "", 4096) = 0
> 1557615902.152487 read(4</lib/x86_64-linux-gnu/libnss_files-2.28.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0003\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.152847 read(4</etc/protocols>, "# Internet (IP) protocols\n#\n# 
> Up"..., 4096) = 2932
> 1557615902.153237 read(3</usr/share/perl5/IO/Socket/IP.pm>, "t options to 
> apply after the thr"..., 8192) = 8192
> 1557615902.153804 read(3</usr/share/perl5/IO/Socket/IP.pm>, "or\n         
> croak \"Expected 'Pee"..., 8192) = 8192
> 1557615902.154779 read(3</usr/share/perl5/IO/Socket/IP.pm>, 
> "elf}{io_socket_ip_connect_in_pro"..., 8192) = 8192
> 1557615902.155550 read(3</usr/share/perl5/IO/Socket/IP.pm>, "PROGRESS>, or 
> C<EWOULDBLOCK> on\n"..., 8192) = 7477
> 1557615902.155913 read(3</usr/share/perl5/IO/Socket/IP.pm>, "", 8192) = 0
> 1557615902.156751 read(3</usr/share/perl5/Net/HTTP/Methods.pm>, "package 
> Net::HTTP::Methods;\nour "..., 8192) = 8192
> 1557615902.158206 read(3</usr/share/perl5/Net/HTTP/Methods.pm>, ";\n\t$line 
> =~ s/(\\015?\\012)\\z// ||"..., 8192) = 8192
> 1557615902.159723 read(3</usr/share/perl5/Net/HTTP/Methods.pm>, "zip_ok;\n\n  
>   # Try to load IO::U"..., 8192) = 949
> 1557615902.160498 read(3</usr/share/perl5/Net/HTTPS.pm>, "package 
> Net::HTTPS;\nour $VERSION"..., 8192) = 3543
> 1557615902.161414 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "#vim: set sts=4 
> sw=4 ts=8 ai:\n#\n"..., 8192) = 8192
> 1557615902.162055 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "# Net::SSLeay.pm - Perl module f"..., 8192) = 8192
> 1557615902.162794 read(5</usr/share/perl/5.28.1/AutoLoader.pm>, "package 
> AutoLoader;\n\nuse strict;"..., 8192) = 5487
> 1557615902.163861 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/autosplit.ix>, "# 
> Index created by AutoSplit for"..., 8192) = 1581
> 1557615902.164160 
> read(5</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/autosplit.ix>, 
> "", 8192) = 0
> 1557615902.164326 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "ID_rc2_ecb                      "..., 8192) = 8192
> 1557615902.164467 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "ON\n NID_description             "..., 8192) = 8192
> 1557615902.164827 read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/Net/SSLeay.pm>, 
> "Loader::AUTOLOAD;\n\t}\n\telse {\n\t  "..., 8192) = 8192
> 1557615902.165566 read(5</usr/share/perl/5.28.1/bytes.pm>, "package 
> bytes;\n\nour $VERSION = '"..., 8192) = 447
> 1557615902.166329 
> read(4</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/SSLeay.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\350\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.166623 read(4</usr/lib/x86_64-linux-gnu/libssl.so.1.1>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\364\1\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.166755 read(4</usr/lib/x86_64-linux-gnu/libcrypto.so.1.1>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\360\10\0\0\0\0\0"..., 832) 
> = 832
> 1557615902.169594 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "\nuse strict;\nuse warnings;\npacka"..., 8192) = 8192
> 1557615902.170376 read(5</usr/share/perl5/URI/_idna.pm>, "package 
> URI::_idna;\n\n# This modu"..., 8192) = 2079
> 1557615902.170760 read(6</usr/share/perl5/URI/_punycode.pm>, "package 
> URI::_punycode;\n\nuse str"..., 8192) = 5622
> 1557615902.171158 read(7</usr/share/perl/5.28.1/integer.pm>, "package 
> integer;\n\nour $VERSION ="..., 8192) = 172
> 1557615902.171231 read(7</usr/share/perl/5.28.1/integer.pm>, "", 8192) = 0
> 1557615902.172714 read(5</usr/share/perl5/URI/_idna.pm>, "", 8192) = 0
> 1557615902.173732 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, " 
> my $resp = LWP::UserAgent->new-"..., 8192) = 8192
> 1557615902.174161 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "r...@uninett.no>\nbv\n\n// bw : http"..., 8192) = 8192
> 1557615902.174397 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "hu\nfilm.hu\nforum.hu\ngames.hu\nhot"..., 8192) = 8192
> 1557615902.174619 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "!city.nagoya.jp\n!city.sapporo.jp"..., 8192) = 8192
> 1557615902.174996 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "jp\nimakane.hokkaido.jp\nishikari."..., 8192) = 8192
> 1557615902.175234 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "a.miyagi.jp\nosaki.miyagi.jp\nrifu"..., 8192) = 8192
> 1557615902.175456 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "higa.jp\nomihachiman.shiga.jp\nots"..., 8192) = 8192
> 1557615902.175678 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "\nlk\ngov.lk\nsch.lk\nnet.lk\nint.lk\n"..., 8192) = 8192
> 1557615902.175901 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "aska.museum\nneues.museum\nnewhamp"..., 8192) = 8192
> 1557615902.176090 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> ".no\nxn--finny-yua.no\nfitjar.no\nf"..., 8192) = 8192
> 1557615902.176247 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "k\ngov.pk\ngob.pk\ngok.pk\ngon.pk\ngo"..., 8192) = 8192
> 1557615902.176386 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "edia.org/wiki/.tw\ntw\nedu.tw\ngov."..., 8192) = 8192
> 1557615902.176549 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "\", Arabic) : IN\n// India\nxn--mgb"..., 8192) = 8192
> 1557615902.176679 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "t\n\n// author : 2014-12-18 Amazon"..., 8192) = 8192
> 1557615902.176744 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "ommunity : 2013-12-05 Fox Orchar"..., 8192) = 8192
> 1557615902.176807 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "014-12-18 Foggy Farms, LLC\nfootb"..., 8192) = 8192
> 1557615902.176871 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, "// 
> jnj : 2015-06-18 Johnson & Jo"..., 8192) = 8192
> 1557615902.176934 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "tual : 2015-04-02 Northwestern M"..., 8192) = 8192
> 1557615902.177089 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "ent (HK) Limited\nrichardli\n\n// r"..., 8192) = 8192
> 1557615902.177153 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "aceutical Industries Limited\ntev"..., 8192) = 8192
> 1557615902.177214 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, "g 
> : 2013-11-14 Public Interest R"..., 8192) = 8192
> 1557615902.177269 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "mazonaws.com\ns3-ca-central-1.ama"..., 8192) = 8192
> 1557615902.177347 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "ojo.org\ndoes-it.net\ndoesntexist."..., 8192) = 8192
> 1557615902.177484 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "uk>\nservice.gov.uk\n\n// GitHub, I"..., 8192) = 8192
> 1557615902.177630 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, 
> "tsystemscloud.com>\noutsystemsclo"..., 8192) = 8062
> 1557615902.177844 read(4</usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm>, "", 
> 8192) = 0
> 1557615902.178474 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm>, "# 
> This file was created by confi"..., 8192) = 3367
> 1557615902.178959 read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config.pm>, 
> "", 8192) = 0
> 1557615902.179263 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "# This file 
> was created by confi"..., 8192) = 8192
> 1557615902.179840 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, 
> "-linux-gnu/perl5/5.28 -Dsitepref"..., 8192) = 8192
> 1557615902.179874 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "N__=1234 
> __ORDER_PDP_ENDIAN__=34"..., 8192) = 8192
> 1557615902.179933 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, 
> "def'\nd_libname_unique='undef'\nd_"..., 8192) = 8192
> 1557615902.179988 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "s/Install 
> ExtUtils/MakeMaker Ext"..., 8192) = 8192
> 1557615902.180035 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, 
> "ib/x86_64-linux-gnu/libgdbm.so /"..., 8192) = 8192
> 1557615902.180083 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "time.h 
> '\ntimetype='time_t'\ntmpna"..., 8192) = 4949
> 1557615902.180634 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_heavy.pl>, "", 8192) = 0
> 1557615902.181050 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl>, 
> "################################"..., 8192) = 409
> 1557615902.181128 
> read(4</usr/lib/x86_64-linux-gnu/perl/5.28.1/Config_git.pl>, "", 8192) = 0
> 1557615902.182093 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "hers.\n\t'ECDHE-RSA-AES256-GCM-SHA"..., 8192) = 8192
> 1557615902.183322 read(3</usr/share/perl5/IO/Socket/SSL.pm>, " 
> $CHECK_SSL_PATH = sub {\n    my "..., 8192) = 8192
> 1557615902.184491 read(3</usr/share/perl5/IO/Socket/SSL.pm>, " my $self = 
> shift;\n    my $args "..., 8192) = 8192
> 1557615902.185776 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "urs when a new 
> client connects t"..., 8192) = 8192
> 1557615902.187218 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "->SUPER::syswrite(@_);\n}\n\nsub pr"..., 8192) = 8192
> 1557615902.188725 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "t_handshake ) 
> {\n\t# if we have no"..., 8192) = 8192
> 1557615902.190019 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "sue17997#msg194950\n\t    if ( $wt"..., 8192) = 8192
> 1557615902.191828 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "\n    }\n    
> sub set_server_defaul"..., 8192) = 8192
> 1557615902.193649 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "_version 
> specified\");\n\tmy $not ="..., 8192) = 8192
> 1557615902.194764 read(3</usr/share/perl5/IO/Socket/SSL.pm>, " as in the 
> PKCS12 file). This is"..., 8192) = 8192
> 1557615902.196318 read(3</usr/share/perl5/IO/Socket/SSL.pm>, 
> "_cb($_,$status_cb) for (values %"..., 8192) = 8192
> 1557615902.198355 read(3</usr/share/perl5/IO/Socket/SSL.pm>, "ject: \".\n\t   
>  join(\"; \",@{$todo-"..., 8192) = 4099
> 1557615902.201081 read(3</etc/ssl/openssl.cnf>, "#\n# OpenSSL example 
> configuratio"..., 4096) = 4096
> 1557615902.201263 read(3</etc/ssl/openssl.cnf>, "F8Strings).\n# MASK:XXXX a 
> litera"..., 4096) = 4096
> 1557615902.201423 read(3</etc/ssl/openssl.cnf>, "icConstraints=CA:FALSE\n\n# 
> Here a"..., 4096) = 2926
> 1557615902.201566 read(3</etc/ssl/openssl.cnf>, "", 4096) = 0
> 1557615902.202278 
> read(3</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/randomize.al>, "# 
> NOTE: Derived from blib/lib/Ne"..., 8192) = 1027
> 1557615902.202601 
> read(3</usr/lib/x86_64-linux-gnu/perl5/5.28/auto/Net/SSLeay/randomize.al>, 
> "", 8192) = 0
> 1557615902.202742 read(3</dev/urandom>, "1\2349\17", 4) = 4
> 1557615902.203166 read(3</dev/urandom>, 
> "\262\211\364\351c\240\tB\357^\305r@\260z\264\245\274\201\207\220\236\332\370\201\\$\261\202I\343\v"...,
>  64) = 64
> 1557615902.204803 read(3</tmp/cert.pem>, "-----BEGIN 
> CERTIFICATE-----\nMIID"..., 4096) = 1115
> 1557615902.204988 read(3</tmp/cert.pem>, "", 4096) = 0
> 1557615902.205555 read(3</etc/protocols>, "# Internet (IP) protocols\n#\n# 
> Up"..., 4096) = 2932
> 1557615902.206309 select(8, NULL, [3<socket:[78527834]>], 
> [3<socket:[78527834]>], {tv_sec=180, tv_usec=0}) = 1 (left {tv_sec=179, 
> tv_usec=999997})
> 1557615902.206773 write(3<socket:[78527834]>, 
> "\26\3\1\2\0\1\0\1\374\3\3\20s,K]\324\315\270\nA\3U\246\322!]\327AH\341\234"...,
>  517) = 517
> 1557615902.206880 read(3<socket:[78527834]>, 0x55fba0bc5da3, 5) = -1 EAGAIN 
> (Resource temporarily unavailable)
> 1557615902.206969 select(8, [3<socket:[78527834]>], NULL, NULL, {tv_sec=180, 
> tv_usec=0}) = 1 (in [3], left {tv_sec=179, tv_usec=997099})
> 1557615902.209968 read(3<socket:[78527834]>, "\26\3\3\0z", 5) = 5
> 1557615902.210026 read(3<socket:[78527834]>, 
> "\2\0\0v\3\3\372<\260\254\353\320\200\212x\230\237\254\376\\\212\200\364\233\316/5Ptx\252="...,
>  122) = 122
> 1557615902.210298 read(3<socket:[78527834]>, "\24\3\3\0\1", 5) = 5
> 1557615902.210356 read(3<socket:[78527834]>, "\1", 1) = 1
> 1557615902.210408 read(3<socket:[78527834]>, "\27\3\3\0\27", 5) = 5
> 1557615902.210457 read(3<socket:[78527834]>, 
> "\315\266\26d\17\362\243\231\242L\35\33\324\345\244U!\345\307m@\316#", 23) = 
> 23
> 1557615902.210521 read(3<socket:[78527834]>, "\27\3\3\3+", 5) = 5
> 1557615902.210574 read(3<socket:[78527834]>, 
> "a\335\367\214=\2=\3666\350\362\244\222A\243\20\267\f\1\307\237\370~\300\244&\25+\223\331S-"...,
>  811) = 811
> 1557615902.210819 read(3<socket:[78527834]>, "\27\3\3\1\31", 5) = 5
> 1557615902.210882 read(3<socket:[78527834]>, 
> "\4y\31Z'\302c\24ia\250\227\350\27\321\f\261\224\250\371x\367`\363\220 
> \301\0166\232\322 "..., 281) = 281
> 1557615902.211054 read(3<socket:[78527834]>, "\27\3\3\0E", 5) = 5
> 1557615902.211111 read(3<socket:[78527834]>, 
> "\373\364\362\353}qz\244\265}js\3215\276\312\243s1\270,\37x\264h\347\264\311N\346\210\355"...,
>  69) = 69
> 1557615902.211284 write(3<socket:[78527834]>, 
> "\24\3\3\0\1\1\27\3\3\0E|]i\373\236^\300\7*\24nT\346\343\220\25\267*\325I_"...,
>  80) = 80
> 1557615902.212196 read(4</usr/share/perl/5.28.1/IO/Uncompress/Gunzip.pm>, 
> "\npackage IO::Uncompress::Gunzip "..., 8192) = 8192
> 1557615902.212817 read(5</usr/share/perl/5.28.1/IO/Uncompress/RawInflate.pm>, 
> "package IO::Uncompress::RawInfla"..., 8192) = 8192
> 1557615902.213293 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm>, 
> "\npackage Compress::Raw::Zlib;\n\nr"..., 8192) = 8192
> 1557615902.214751 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm>, " if 
> $validate && $value !~ /^\\d+"..., 8192) = 8192
> 1557615902.216035 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/Compress/Raw/Zlib.pm>, "    
> croak \"Compress::Raw::Zlib::"..., 8192) = 8192
> 1557615902.216653 
> read(6</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/Compress/Raw/Zlib/Zlib.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260$\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.216996 read(6</lib/x86_64-linux-gnu/libz.so.1.2.11>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320#\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.218075 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "package IO::Compress::Base::Comm"..., 8192) = 8192
> 1557615902.218820 read(7</usr/share/perl/5.28.1/File/GlobMapper.pm>, "package 
> File::GlobMapper;\n\nuse s"..., 8192) = 8192
> 1557615902.219581 read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/File/Glob.pm>, 
> "package File::Glob;\n\nuse strict;"..., 8192) = 2045
> 1557615902.220474 
> read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/auto/File/Glob/Glob.so>, 
> "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20$\0\0\0\0\0\0"..., 832) = 
> 832
> 1557615902.223811 read(7</usr/share/perl/5.28.1/utf8.pm>, "package 
> utf8;\n\n$utf8::hint_bits "..., 8192) = 342
> 1557615902.225383 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "urn $obj ;\n}\n\nsub IO::Compress::"..., 8192) = 8192
> 1557615902.227333 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "print \"PARSE $type $key $value $"..., 8192) = 6715
> 1557615902.228866 read(6</usr/share/perl/5.28.1/IO/Compress/Base/Common.pm>, 
> "", 8192) = 0
> 1557615902.229626 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, 
> "\npackage IO::Uncompress::Base ;\n"..., 8192) = 8192
> 1557615902.230354 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm>, 
> "#\n\npackage IO::File;\n\nuse 5.008_"..., 8192) = 1636
> 1557615902.230985 
> read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm>, "#\n\npackage 
> IO::Seekable;\n\nuse 5."..., 8192) = 642
> 1557615902.231333 
> read(8</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/Seekable.pm>, "", 8192) = 0
> 1557615902.231855 read(7</usr/lib/x86_64-linux-gnu/perl/5.28.1/IO/File.pm>, 
> "", 8192) = 0
> 1557615902.233607 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "     
>    'transparent'   => [IO::"..., 8192) = 8192
> 1557615902.234531 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "  
> }\n\n        return scalar @{ $x"..., 8192) = 8192
> 1557615902.235726 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "     
>              \"$trailer_size"..., 8192) = 8192
> 1557615902.237058 read(6</usr/share/perl/5.28.1/IO/Uncompress/Base.pm>, "     
> return substr($$buf, $offse"..., 8192) = 5323
> 1557615902.238308 
> read(6</usr/share/perl/5.28.1/IO/Uncompress/Adapter/Inflate.pm>, "package 
> IO::Uncompress::Adapter:"..., 8192) = 3279
> 1557615902.239877 read(5</usr/share/perl/5.28.1/IO/Uncompress/RawInflate.pm>, 
> "ift ;\n    my ($def, $status) = *"..., 8192) = 8192
> 1557615902.240818 
> read(5</usr/share/perl/5.28.1/IO/Compress/Gzip/Constants.pm>, "package 
> IO::Compress::Gzip::Cons"..., 8192) = 3903
> 1557615902.241840 
> read(5</usr/share/perl/5.28.1/IO/Compress/Gzip/Constants.pm>, "", 8192) = 0
> 1557615902.242554 read(5</usr/share/perl/5.28.1/IO/Compress/Zlib/Extra.pm>, 
> "package IO::Compress::Zlib::Extr"..., 8192) = 5711
> 1557615902.244748 select(8, [3<socket:[78527834]>], [3<socket:[78527834]>], 
> NULL, {tv_sec=180, tv_usec=0}) = 2 (in [3], out [3], left {tv_sec=179, 
> tv_usec=999995})
> 1557615902.245125 read(3<socket:[78527834]>, "\27\3\3\0\372", 5) = 5
> 1557615902.245254 read(3<socket:[78527834]>, 
> "lsAf\217\301\367\245\311\305\245\272\274\341W\3366doN^>\246\32\3\34\334&\337\315x\1"...,
>  250) = 250
> 1557615902.245447 read(3<socket:[78527834]>, "\27\3\3\0\372", 5) = 5
> 1557615902.245527 read(3<socket:[78527834]>, 
> "\4@*\235\373\311\374:\3I\246/\200\17!\36\344\24m<\325y\0\30\231\274l\243\350\340\2n"...,
>  250) = 250
> 1557615902.245617 read(3<socket:[78527834]>, 0x55fba0bc5da3, 5) = -1 EAGAIN 
> (Resource temporarily unavailable)
> 1557615902.245810 write(3<socket:[78527834]>, 
> "\27\3\3\0\323PXx\21E\"\376\323X\272\2265\177S\255\30N9`\272\320\214\227\35\24lJ"...,
>  216) = 216
> 1557615902.245986 select(8, [3<socket:[78527834]>], NULL, NULL, {tv_sec=180, 
> tv_usec=0}) = ? ERESTARTNOHAND (To be restarted if no handler)
> 1557615909.446935 --- SIGINT {si_signo=SIGINT, si_code=SI_KERNEL} ---
> 1557615909.450693 +++ killed by SIGINT +++

Reply via email to