http2 icon indicating copy to clipboard operation
http2 copied to clipboard

A HTTP/2 implementation for dart.

Results 25 http2 issues
Sort by recently updated
recently updated
newest added

Hi @natebosch! Could you release a new version of http2 without dart:io ([commit](https://github.com/dart-lang/http2/commit/83103b5e36426376cc9f206baa0861c94be5d223#diff-807e692308f0562976d7b9ff8ed3a9f9d9180b66bbd381ddc609b774470c9459))? It marks all packages depending on not supporting the js platform. More specifically, any package depending on...

next-breaking-release

The traffic from this package does not show up in the DevTools networking page. Does this package need to be adopted to support DevTools or vice versa? We should update...

type-question

in http2 demo there is such code to deal message; ``` var stream = transport.makeRequest(headers, endStream: true); await for (var message in stream.incomingMessages) { ``` but if the connection is...

type-enhancement
type-question

I have two questions: 1. I don't know how to send data with post method. 2. how to set proxy. Thanks.

when connect to some http2 website, it shows this error

Hello! Thanks for the lib). I ran into the following problem. When server send me goaway frame, StreamHandler class create following exception: `StreamException( id, 'Remote end was telling us to...

type-enhancement
type-code-health

Hi! I'm trying to use this package for a SSE server behind a http2 proxy. I'm able to connect to the server and get the first response but I'm unable...

type-question

A tcp-socket can be closed in one direction (the client can close one direction after it is done sending the request, and still listen for more response). We should support...

type-enhancement

like this ```dart // getAlpnProtocols as List if (context.getAlpnProtocols.contains('h2')) { final server = await MultiProtocolHttpServer.bind(address, port ?? 443, context); // code ... } else { final server = await HttpServer.bindSecure(address,...

We have to measure the impact of Dart 2.0 runtime on the http2 code. I've for example noticed that running the `manual_test/out_of_stream_ids_test.dart` seems to be super slow.