-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp3client.go
48 lines (42 loc) · 898 Bytes
/
http3client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package net
import (
"crypto/tls"
"net/http"
"time"
"github.com/quic-go/quic-go/http3"
)
func Http3Client() *http.Client {
roundTripper := &http3.RoundTripper{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: false,
},
}
return &http.Client{Transport: roundTripper}
}
type withCloseIdleConnections struct {
*http3.RoundTripper
}
func (transport *withCloseIdleConnections) CloseIdleConnections() {
transport.Close()
}
func NewHTTP3() *HTTP {
transport := &withCloseIdleConnections{
RoundTripper: &http3.RoundTripper{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
MinVersion: tls.VersionTLS11,
MaxVersion: tls.VersionTLS13,
},
},
}
client := &http.Client{
Transport: transport,
Timeout: 120 * time.Second,
}
h := &HTTP{
transport: transport,
client: client,
}
// client.CheckRedirect = h.redirect
return h
}