Help for this page

Select Code to Download


  1. or download this
    print $socket ...
    readline $socket;
    
  2. or download this
    writable {
       syswrite ...
    readable {
       sysread ...
    }}
    
  3. or download this
    on_write => sub { ... },
    on_read  => sub { ... },
    
  4. or download this
    sub http2 {
        my $req = shift;
    ...
                 HTTP::Response-> parse( $res)
        }}
    }
    
  5. or download this
    sub http3 {
        my $req = shift;
    ...
            again;
        }}
    }