Files
quic-go/Changelog.md
Marten Seemann a851aaacda remove the tls.Config from the quic.Config
The tls.Config now is a separate parameter to all Listen and Dial
functions in the quic package.
2017-07-03 22:12:09 +02:00

867 B

Changelog

v0.6.0 (unreleased)

  • Added quic.Config options for maximal flow control windows
  • Add a quic.Config option for QUIC versions
  • Add a quic.Config option to request truncation of the connection ID from a server
  • Add a quic.Config option to configure the source address validation
  • Add a quic.Config option to configure the handshake timeout
  • Remove the tls.Config from the quic.Config. The tls.Config must now be passed to the Dial and Listen functions as a separate parameter. See the Godoc for details.
  • Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see the wiki for more details.
  • Rename the h2quic.QuicRoundTripper to h2quic.RoundTripper
  • Various bugfixes