mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
interop: fix server configuration for the 0-RTT test case (#3713)
This commit is contained in:
parent
b7384a4404
commit
0567a925e5
1 changed files with 4 additions and 1 deletions
|
@ -58,7 +58,10 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
switch testcase {
|
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)
|
err = runHTTP09Server(quicConf)
|
||||||
case "chacha20":
|
case "chacha20":
|
||||||
tlsConf.CipherSuites = []uint16{tls.TLS_CHACHA20_POLY1305_SHA256}
|
tlsConf.CipherSuites = []uint16{tls.TLS_CHACHA20_POLY1305_SHA256}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue