http2
http2 copied to clipboard
A HTTP/2 implementation for dart.
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...
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...
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...
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...
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...
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...
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.