mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
rename the h2quic.QuicRoundTripper to h2quic.RoundTripper
This commit is contained in:
parent
a1680e8670
commit
9df3380bc6
7 changed files with 16 additions and 15 deletions
|
@ -8,4 +8,5 @@
|
||||||
- Add a `quic.Config` option to configure the source address validation
|
- Add a `quic.Config` option to configure the source address validation
|
||||||
- Add a `quic.Config` option to configure the handshake timeout
|
- Add a `quic.Config` option to configure the handshake timeout
|
||||||
- Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see [the wiki](https://github.com/lucas-clemente/quic-go/wiki/Logging) for more details.
|
- Changed the log level environment variable to only accept strings ("DEBUG", "INFO", "ERROR"), see [the wiki](https://github.com/lucas-clemente/quic-go/wiki/Logging) for more details.
|
||||||
|
- Rename the `h2quic.QuicRoundTripper` to `h2quic.RoundTripper`
|
||||||
- Various bugfixes
|
- Various bugfixes
|
||||||
|
|
|
@ -59,11 +59,11 @@ h2quic.ListenAndServeQUIC("localhost:4242", "/path/to/cert/chain.pem", "/path/to
|
||||||
|
|
||||||
### As a client
|
### As a client
|
||||||
|
|
||||||
See the [example client](example/client/main.go). Use a `QuicRoundTripper` as a `Transport` in a `http.Client`.
|
See the [example client](example/client/main.go). Use a `h2quic.RoundTripper` as a `Transport` in a `http.Client`.
|
||||||
|
|
||||||
```go
|
```go
|
||||||
http.Client{
|
http.Client{
|
||||||
Transport: &h2quic.QuicRoundTripper{},
|
Transport: &h2quic.RoundTripper{},
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ func main() {
|
||||||
utils.SetLogTimeFormat("")
|
utils.SetLogTimeFormat("")
|
||||||
|
|
||||||
hclient := &http.Client{
|
hclient := &http.Client{
|
||||||
Transport: &h2quic.QuicRoundTripper{},
|
Transport: &h2quic.RoundTripper{},
|
||||||
}
|
}
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
|
|
|
@ -11,8 +11,8 @@ import (
|
||||||
"golang.org/x/net/lex/httplex"
|
"golang.org/x/net/lex/httplex"
|
||||||
)
|
)
|
||||||
|
|
||||||
// QuicRoundTripper implements the http.RoundTripper interface
|
// RoundTripper implements the http.RoundTripper interface
|
||||||
type QuicRoundTripper struct {
|
type RoundTripper struct {
|
||||||
mutex sync.Mutex
|
mutex sync.Mutex
|
||||||
|
|
||||||
// DisableCompression, if true, prevents the Transport from
|
// DisableCompression, if true, prevents the Transport from
|
||||||
|
@ -32,10 +32,10 @@ type QuicRoundTripper struct {
|
||||||
clients map[string]http.RoundTripper
|
clients map[string]http.RoundTripper
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ http.RoundTripper = &QuicRoundTripper{}
|
var _ http.RoundTripper = &RoundTripper{}
|
||||||
|
|
||||||
// RoundTrip does a round trip
|
// RoundTrip does a round trip
|
||||||
func (r *QuicRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
func (r *RoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
||||||
if req.URL == nil {
|
if req.URL == nil {
|
||||||
closeRequestBody(req)
|
closeRequestBody(req)
|
||||||
return nil, errors.New("quic: nil Request.URL")
|
return nil, errors.New("quic: nil Request.URL")
|
||||||
|
@ -74,7 +74,7 @@ func (r *QuicRoundTripper) RoundTrip(req *http.Request) (*http.Response, error)
|
||||||
return r.getClient(hostname).RoundTrip(req)
|
return r.getClient(hostname).RoundTrip(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *QuicRoundTripper) getClient(hostname string) http.RoundTripper {
|
func (r *RoundTripper) getClient(hostname string) http.RoundTripper {
|
||||||
r.mutex.Lock()
|
r.mutex.Lock()
|
||||||
defer r.mutex.Unlock()
|
defer r.mutex.Unlock()
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,9 @@ import (
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
|
||||||
type mockQuicRoundTripper struct{}
|
type mockRoundTripper struct{}
|
||||||
|
|
||||||
func (m *mockQuicRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
func (m *mockRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
||||||
return &http.Response{Request: req}, nil
|
return &http.Response{Request: req}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,12 +43,12 @@ var _ io.ReadCloser = &mockBody{}
|
||||||
|
|
||||||
var _ = Describe("RoundTripper", func() {
|
var _ = Describe("RoundTripper", func() {
|
||||||
var (
|
var (
|
||||||
rt *QuicRoundTripper
|
rt *RoundTripper
|
||||||
req1 *http.Request
|
req1 *http.Request
|
||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
rt = &QuicRoundTripper{}
|
rt = &RoundTripper{}
|
||||||
var err error
|
var err error
|
||||||
req1, err = http.NewRequest("GET", "https://www.example.org/file1.html", nil)
|
req1, err = http.NewRequest("GET", "https://www.example.org/file1.html", nil)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
@ -56,7 +56,7 @@ var _ = Describe("RoundTripper", func() {
|
||||||
|
|
||||||
It("reuses existing clients", func() {
|
It("reuses existing clients", func() {
|
||||||
rt.clients = make(map[string]http.RoundTripper)
|
rt.clients = make(map[string]http.RoundTripper)
|
||||||
rt.clients["www.example.org:443"] = &mockQuicRoundTripper{}
|
rt.clients["www.example.org:443"] = &mockRoundTripper{}
|
||||||
rsp, err := rt.RoundTrip(req1)
|
rsp, err := rt.RoundTrip(req1)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(rsp.Request).To(Equal(req1))
|
Expect(rsp.Request).To(Equal(req1))
|
||||||
|
|
|
@ -27,7 +27,7 @@ var _ = Describe("Client tests", func() {
|
||||||
Fail("quic.clemente.io does not resolve to 127.0.0.1. Consider adding it to /etc/hosts.")
|
Fail("quic.clemente.io does not resolve to 127.0.0.1. Consider adding it to /etc/hosts.")
|
||||||
}
|
}
|
||||||
client = &http.Client{
|
client = &http.Client{
|
||||||
Transport: &h2quic.QuicRoundTripper{},
|
Transport: &h2quic.RoundTripper{},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -148,7 +148,7 @@ var _ = Describe("Server tests", func() {
|
||||||
certPool := x509.NewCertPool()
|
certPool := x509.NewCertPool()
|
||||||
certPool.AddCert(CACert)
|
certPool.AddCert(CACert)
|
||||||
client = &http.Client{
|
client = &http.Client{
|
||||||
Transport: &h2quic.QuicRoundTripper{
|
Transport: &h2quic.RoundTripper{
|
||||||
TLSClientConfig: &tls.Config{RootCAs: certPool},
|
TLSClientConfig: &tls.Config{RootCAs: certPool},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue