constants.go 270 B

12345678910111213
  1. package quic
  2. import "time"
  3. const (
  4. HandshakeIdleTimeout = 5 * time.Second
  5. MaxIdleTimeout = 5 * time.Second
  6. MaxIdlePingPeriod = 1 * time.Second
  7. // MaxIncomingStreams is 2^60, which is the maximum supported value by Quic-Go
  8. MaxIncomingStreams = 1 << 60
  9. )