mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
104 lines
3.4 KiB
Go
104 lines
3.4 KiB
Go
package quic
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
)
|
|
|
|
// Clone clones a Config
|
|
func (c *Config) Clone() *Config {
|
|
copy := *c
|
|
return ©
|
|
}
|
|
|
|
func validateConfig(config *Config) error {
|
|
if config == nil {
|
|
return nil
|
|
}
|
|
if config.MaxIncomingStreams > 1<<60 {
|
|
return errors.New("invalid value for Config.MaxIncomingStreams")
|
|
}
|
|
if config.MaxIncomingUniStreams > 1<<60 {
|
|
return errors.New("invalid value for Config.MaxIncomingUniStreams")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// populateServerConfig populates fields in the quic.Config with their default values, if none are set
|
|
// it may be called with nil
|
|
func populateServerConfig(config *Config) *Config {
|
|
config = populateConfig(config)
|
|
if config.ConnectionIDLength == 0 {
|
|
config.ConnectionIDLength = protocol.DefaultConnectionIDLength
|
|
}
|
|
if config.AcceptToken == nil {
|
|
config.AcceptToken = defaultAcceptToken
|
|
}
|
|
return config
|
|
}
|
|
|
|
// populateClientConfig populates fields in the quic.Config with their default values, if none are set
|
|
// it may be called with nil
|
|
func populateClientConfig(config *Config, createdPacketConn bool) *Config {
|
|
config = populateConfig(config)
|
|
if config.ConnectionIDLength == 0 && !createdPacketConn {
|
|
config.ConnectionIDLength = protocol.DefaultConnectionIDLength
|
|
}
|
|
return config
|
|
}
|
|
|
|
func populateConfig(config *Config) *Config {
|
|
if config == nil {
|
|
config = &Config{}
|
|
}
|
|
versions := config.Versions
|
|
if len(versions) == 0 {
|
|
versions = protocol.SupportedVersions
|
|
}
|
|
handshakeTimeout := protocol.DefaultHandshakeTimeout
|
|
if config.HandshakeTimeout != 0 {
|
|
handshakeTimeout = config.HandshakeTimeout
|
|
}
|
|
idleTimeout := protocol.DefaultIdleTimeout
|
|
if config.MaxIdleTimeout != 0 {
|
|
idleTimeout = config.MaxIdleTimeout
|
|
}
|
|
maxReceiveStreamFlowControlWindow := config.MaxReceiveStreamFlowControlWindow
|
|
if maxReceiveStreamFlowControlWindow == 0 {
|
|
maxReceiveStreamFlowControlWindow = protocol.DefaultMaxReceiveStreamFlowControlWindow
|
|
}
|
|
maxReceiveConnectionFlowControlWindow := config.MaxReceiveConnectionFlowControlWindow
|
|
if maxReceiveConnectionFlowControlWindow == 0 {
|
|
maxReceiveConnectionFlowControlWindow = protocol.DefaultMaxReceiveConnectionFlowControlWindow
|
|
}
|
|
maxIncomingStreams := config.MaxIncomingStreams
|
|
if maxIncomingStreams == 0 {
|
|
maxIncomingStreams = protocol.DefaultMaxIncomingStreams
|
|
} else if maxIncomingStreams < 0 {
|
|
maxIncomingStreams = 0
|
|
}
|
|
maxIncomingUniStreams := config.MaxIncomingUniStreams
|
|
if maxIncomingUniStreams == 0 {
|
|
maxIncomingUniStreams = protocol.DefaultMaxIncomingUniStreams
|
|
} else if maxIncomingUniStreams < 0 {
|
|
maxIncomingUniStreams = 0
|
|
}
|
|
|
|
return &Config{
|
|
Versions: versions,
|
|
HandshakeTimeout: handshakeTimeout,
|
|
MaxIdleTimeout: idleTimeout,
|
|
AcceptToken: config.AcceptToken,
|
|
KeepAlive: config.KeepAlive,
|
|
MaxReceiveStreamFlowControlWindow: maxReceiveStreamFlowControlWindow,
|
|
MaxReceiveConnectionFlowControlWindow: maxReceiveConnectionFlowControlWindow,
|
|
MaxIncomingStreams: maxIncomingStreams,
|
|
MaxIncomingUniStreams: maxIncomingUniStreams,
|
|
ConnectionIDLength: config.ConnectionIDLength,
|
|
StatelessResetKey: config.StatelessResetKey,
|
|
TokenStore: config.TokenStore,
|
|
QuicTracer: config.QuicTracer,
|
|
Tracer: config.Tracer,
|
|
}
|
|
}
|