mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a flag to skip certificate verification to the example client
This commit is contained in:
parent
9eb5777bbb
commit
f2289c8903
1 changed files with 3 additions and 1 deletions
|
@ -16,6 +16,7 @@ import (
|
|||
func main() {
|
||||
verbose := flag.Bool("v", false, "verbose")
|
||||
quiet := flag.Bool("q", false, "don't print the data")
|
||||
insecure := flag.Bool("insecure", false, "skip certificate verification")
|
||||
flag.Parse()
|
||||
urls := flag.Args()
|
||||
|
||||
|
@ -30,7 +31,8 @@ func main() {
|
|||
|
||||
roundTripper := &http3.RoundTripper{
|
||||
TLSClientConfig: &tls.Config{
|
||||
RootCAs: testdata.GetRootCA(),
|
||||
RootCAs: testdata.GetRootCA(),
|
||||
InsecureSkipVerify: *insecure,
|
||||
},
|
||||
}
|
||||
defer roundTripper.Close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue