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

https://github.com/dart-lang/http2/blob/master/lib/src/streams/stream_handler.dart attached link to the code, how to expose StreamState?

type-question

please add http 2 server push

It would be nice if the library would support gzip content encoding out of the box the same way the HTTP1 Dart library does.

type-enhancement

There's already a TODO in window_handler.dart for this, but this just recently bit me. Basically we can get in a state in our application where if we have enough streams...

type-enhancement

Instead of sending small window updates, the same size as the `DATA` length received, send larger updates once a certain portion of the window has been used up, as suggested...

my code is a little different from the big await loop in example: ```dart final req = transport.makeRequest( headers.entries.map((e) => Header.ascii(e.key, e.value)).toList(growable: false), endStream: false, ); req.sendData(utf8.encode(body), endStream: true); final...

type-question

Hi I have tested speed of http2 library and it is much slower comparing to http. I tested with client and server being on my local. Server is written in...

type-enhancement

Is there a way to catch HTTP/2 ServerSocket call and redirect it to another URL?. I have found a way to do that for `get` requests but not for WebSocket...

type-question