mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
6fde3632ef
The vendor/ folder was created with the help of @FiloSottile's gvt and vendorcheck. Any dependencies of Caddy plugins outside this repo are not vendored. We do not remove any unused, vendored packages because vendorcheck -u only checks using the current build configuration; i.e. packages that may be imported by files toggled by build tags of other systems. CI tests have been updated to ignore the vendor/ folder. When Go 1.9 is released, a few of the go commands should be revised to again use ./... as it will ignore the vendor folder by default.
52 lines
922 B
Go
52 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()
|
|
}
|