libchan icon indicating copy to clipboard operation
libchan copied to clipboard

Calling Send() with large objects errors out in the spdy implementation

Open BrianBland opened this issue 10 years ago • 0 comments

The spdy channel.Send method will return a spdy.InvalidDataFrame error if the serialized size of the message is greater than 16MB (the spdy max data frame size). This could be fixed with a combination of automatic data frame chunking (https://github.com/docker/spdystream/issues/31) and using the underlying spdystream object as an io.Reader for msgpack deserialization on the Receive side.

BrianBland avatar Oct 25 '14 00:10 BrianBland