spdystream icon indicating copy to clipboard operation
spdystream copied to clipboard

Results 18 spdystream issues
Sort by recently updated
recently updated
newest added

Implement a new method SetUserIdleTimeout() that allows to set a timeout for idle sessions, but contrarty to the SetIdleTimeout(), this doesn't take into account SPDY ping frames. This allows consumers...

**Problem:** If one has `debug=True` set as environment variable, the logging behavior might be irritating using e.g. kubectl. It brings a bunch of messages - e.g. when using the shell...

Fixes race in unit tests between setting and reading the authenticate variable

Hello, The README.md and LICENSE.docs files are inconsistent about which license applies to the spdystream documentation. The README.md file says that docs are: "...licensed under the _Creative Commons Attribution 4.0...

With Go 1.12.2 on Fedora Rawhide x86_64, commit 6480d4af844c189cf5dd913db24ddd339d3a4f85: ``` Testing in: /builddir/build/BUILD/spdystream-6480d4af844c189cf5dd913db24ddd339d3a4f85/_build/src PATH: /builddir/build/BUILD/spdystream-6480d4af844c189cf5dd913db24ddd339d3a4f85/_build/bin:/builddir/.local/bin:/builddir/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin GOPATH: /builddir/build/BUILD/spdystream-6480d4af844c189cf5dd913db24ddd339d3a4f85/_build:/usr/share/gocode GO111MODULE: off command: go test -buildmode pie -compiler gc -ldflags "-X github.com/docker/spdystream/version=0 -X...

Once a stream has been reset, calling Write should throw an error.

bug

Having benchmarks will make finding bottlenecks in the code easier. Since this is a low level library having basic benchmarks make sense. This library may be deprecated soon but with...

Currently the spdy framer uses the best compression setting for zlib, which is also the slowest. The compression should be configurable on connection creation to allow for less overhead during...

enhancement

io.Copy currently copies in chunks of 3KB for standard io.Writer and io.Reader implementations, but will instead use io.WriteTo or io.ReadFrom if the writer or reader supports the relevant method. To...

enhancement

Stream.WriteData always constructs exactly one spdy DataFrame, which causes an error when the data byte array has length greater than 16MB (the spdy max frame data size). I'm proposing that...

enhancement