cmd/routed: quic fix

This commit is contained in:
Cadey Ratio 2018-01-03 10:58:55 -08:00
parent 86c54a384a
commit 16611e29e6
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ func setupQuic(s *Server, scfg Config) {
} }
for { for {
ln.FatalErr(context.Background(), qs.ListenAndServeTLS("", "")) ln.FatalErr(context.Background(), qs.ListenAndServe())
} }
} }