move the QUIC version check to the config validation

This commit is contained in:
Marten Seemann 2023-03-31 19:35:03 +09:00
parent 5400587610
commit ae5a8bd35c
5 changed files with 9 additions and 20 deletions

View file

@ -234,11 +234,6 @@ func listen(conn net.PacketConn, tlsConf *tls.Config, config *Config, acceptEarl
return nil, err
}
config = populateServerConfig(config)
for _, v := range config.Versions {
if !protocol.IsValidVersion(v) {
return nil, fmt.Errorf("%s is not a valid QUIC version", v)
}
}
connHandler, err := getMultiplexer().AddConn(conn, config.ConnectionIDGenerator.ConnectionIDLen(), config.StatelessResetKey, config.Tracer)
if err != nil {