dgrr / http2

HTTP/2 implementation for fasthttp
Apache License 2.0
208 stars 36 forks source link

Streaming would be nice. #5

Closed dgrr closed 2 years ago

dgrr commented 3 years ago

Streaming of data packets. Or support the fasthttp streaming feature. Currently, if the packet is longer than 65535 the packets gets fragmented into multiple data packets without the EndFlag.

I think the mechanism should be similar for longer packets. Just look into it

dgrr commented 3 years ago

Half done. Now we need the streaming of fasthttp

dgrr commented 2 years ago

It was very well solved here