p5-Protocol-HTTP2 icon indicating copy to clipboard operation
p5-Protocol-HTTP2 copied to clipboard

HTTP/2 protocol implementation (RFC 7540)

Results 8 p5-Protocol-HTTP2 issues
Sort by recently updated
recently updated
newest added
trafficstars

On GOAWAY frame, store all the info as a hash in `$con->{goaway}`.

Add a `on_goaway` callback to `Procotol::HTTP2::Client->new`. It should be called when the server sends a GOAWAY frame. It should receive last_stream_id, error_code and the additional data (which is usually a...

Hi, When I use Protocol::HTTP2::Client with request sent with multiple parallel requests(streams), the on_done() cb is returning undef values for header, content for all streams exept the last one(for which...

I'm trying to use this module as an http2 server. I've got a client which opens a connection to the server and streams objects. The tcp connection forms and I...

The PH2 test-suite hardcodes the use of tlsv1 (i.e., TLSv1.0) which has been deprecated (alongside TLSv1.1 since 2021 - see RFC 8996). Using the value tlsv1_2 would be fine (tlsv1_3...

The current release 1.10 fails test `t/09_client_server_tcp.t` with the following error: ``` # Failed test 'no errors' # at t/09_client_server_tcp.t line 115. # got: 'Can't call method "push_write" on an...

From OpenSSL 3.1.0 protocols SSL 3, TLS 1.0, TLS 1.1, and DTLS 1.0 only work at security level 0. https://www.openssl.org/news/openssl-3.1-notes.html Therefore, change protocol used in tests from TLSv1 to TLSv1.2.