h2conn icon indicating copy to clipboard operation
h2conn copied to clipboard

HTTP2 client-server full-duplex connection

Results 3 h2conn issues
Sort by recently updated
recently updated
newest added

Conn struct needs to implement ``` LocalAddr() net.Addr RemoteAddr() net.Addr ```

When I put the server behind nginx, and try to connect with `h2.Connect()`, it throws an error: ``` stream error: stream ID 3; PROTOCOL_ERROR ```

As far as I can tell, in Go today (I'm using 1.18), full duplex communication cannot work with their HTTP client. This is because `http2.Transport.RoundTrip` doesn't return until it has...