document that closing a http3.Server created by Serve doesn't close conn

This commit is contained in:
Marten Seemann 2019-09-01 11:15:01 +07:00
parent bcac555574
commit 564bd6b7ba

View file

@ -73,6 +73,8 @@ func (s *Server) ListenAndServeTLS(certFile, keyFile string) error {
}
// Serve an existing UDP connection.
// It is possible to reuse the same connection for outgoing connections.
// Closing the server does not close the packet conn.
func (s *Server) Serve(conn net.PacketConn) error {
return s.serveImpl(s.TLSConfig, conn)
}