From 589ffcd74668559a7ba8ee8af3f358973d75e59f Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 9 Oct 2020 19:05:04 +0700 Subject: [PATCH] listen on both IPv4 and IPv6 in the interop runner server --- interop/server/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interop/server/main.go b/interop/server/main.go index 65755da50..df6c0ab04 100644 --- a/interop/server/main.go +++ b/interop/server/main.go @@ -83,7 +83,7 @@ func main() { func runHTTP09Server(quicConf *quic.Config) error { server := http09.Server{ Server: &http.Server{ - Addr: "0.0.0.0:443", + Addr: ":443", TLSConfig: tlsConf, }, QuicConfig: quicConf, @@ -95,7 +95,7 @@ func runHTTP09Server(quicConf *quic.Config) error { func runHTTP3Server(quicConf *quic.Config) error { server := http3.Server{ Server: &http.Server{ - Addr: "0.0.0.0:443", + Addr: ":443", TLSConfig: tlsConf, }, QuicConfig: quicConf,