diff --git a/interop/server/main.go b/interop/server/main.go index 1d9f5f5d..65755da5 100644 --- a/interop/server/main.go +++ b/interop/server/main.go @@ -60,6 +60,9 @@ func main() { switch testcase { case "versionnegotiation", "handshake", "transfer", "resumption", "zerortt", "multiconnect": err = runHTTP09Server(quicConf) + case "chacha20": + tlsConf.CipherSuites = []uint16{tls.TLS_CHACHA20_POLY1305_SHA256} + err = runHTTP09Server(quicConf) case "retry": // By default, quic-go performs a Retry on every incoming connection. quicConf.AcceptToken = nil