mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
log requests in the interop client
This commit is contained in:
parent
7b126285ab
commit
fe313fb83f
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
"crypto/tls"
|
||||
"errors"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"net"
|
||||
"net/http"
|
||||
"strings"
|
||||
|
@ -38,6 +39,8 @@ func (r *RoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
|||
return nil, errors.New("only GET requests supported")
|
||||
}
|
||||
|
||||
log.Printf("Requesting %s.\n", req.URL)
|
||||
|
||||
r.mutex.Lock()
|
||||
hostname := authorityAddr("https", hostnameFromRequest(req))
|
||||
if r.clients == nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue