fix: disable doq skip verify cert
This commit is contained in:
parent
8c079bf5bc
commit
9c70e649ca
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ func (dc *quicClient) getSession(ctx context.Context) (quic.Connection, error) {
|
||||||
|
|
||||||
func (dc *quicClient) openSession(ctx context.Context) (quic.Connection, error) {
|
func (dc *quicClient) openSession(ctx context.Context) (quic.Connection, error) {
|
||||||
tlsConfig := &tls.Config{
|
tlsConfig := &tls.Config{
|
||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: false,
|
||||||
NextProtos: []string{
|
NextProtos: []string{
|
||||||
NextProtoDQ,
|
NextProtoDQ,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue