interop: fix server configuration for the 0-RTT test case (#3713)

This commit is contained in:
Marten Seemann 2023-02-15 23:05:47 -08:00 committed by GitHub
parent b7384a4404
commit 0567a925e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,10 @@ func main() {
}
switch testcase {
case "versionnegotiation", "handshake", "retry", "transfer", "resumption", "zerortt", "multiconnect":
case "zerortt":
quicConf.Allow0RTT = func(net.Addr) bool { return true }
fallthrough
case "versionnegotiation", "handshake", "retry", "transfer", "resumption", "multiconnect":
err = runHTTP09Server(quicConf)
case "chacha20":
tlsConf.CipherSuites = []uint16{tls.TLS_CHACHA20_POLY1305_SHA256}