mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
53 lines
922 B
Go
53 lines
922 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"flag"
|
||
|
"io"
|
||
|
"net/http"
|
||
|
"sync"
|
||
|
|
||
|
"github.com/lucas-clemente/quic-go/h2quic"
|
||
|
"github.com/lucas-clemente/quic-go/utils"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
verbose := flag.Bool("v", false, "verbose")
|
||
|
flag.Parse()
|
||
|
urls := flag.Args()
|
||
|
|
||
|
if *verbose {
|
||
|
utils.SetLogLevel(utils.LogLevelDebug)
|
||
|
} else {
|
||
|
utils.SetLogLevel(utils.LogLevelInfo)
|
||
|
}
|
||
|
utils.SetLogTimeFormat("")
|
||
|
|
||
|
hclient := &http.Client{
|
||
|
Transport: &h2quic.QuicRoundTripper{},
|
||
|
}
|
||
|
|
||
|
var wg sync.WaitGroup
|
||
|
wg.Add(len(urls))
|
||
|
for _, addr := range urls {
|
||
|
utils.Infof("GET %s", addr)
|
||
|
go func(addr string) {
|
||
|
rsp, err := hclient.Get(addr)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
utils.Infof("Got response for %s: %#v", addr, rsp)
|
||
|
|
||
|
body := &bytes.Buffer{}
|
||
|
_, err = io.Copy(body, rsp.Body)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
utils.Infof("Request Body:")
|
||
|
utils.Infof("%s", body.Bytes())
|
||
|
wg.Done()
|
||
|
}(addr)
|
||
|
}
|
||
|
wg.Wait()
|
||
|
}
|