fix: disable doq skip verify cert

This commit is contained in:
gVisor bot 2022-06-20 22:30:04 +08:00
parent f0b3c6a0c9
commit 0c2014bb40

View File

@ -129,7 +129,7 @@ func (dc *quicClient) getSession(ctx context.Context) (quic.Connection, error) {
func (dc *quicClient) openSession(ctx context.Context) (quic.Connection, error) {
tlsConfig := &tls.Config{
InsecureSkipVerify: true,
InsecureSkipVerify: false,
NextProtos: []string{
NextProtoDQ,
},