mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
add a better example client
This commit is contained in:
parent
40a6577dc3
commit
6ece13f9ab
2 changed files with 41 additions and 23 deletions
|
@ -1,23 +0,0 @@
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
quic "github.com/lucas-clemente/quic-go"
|
|
||||||
"github.com/lucas-clemente/quic-go/utils"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
addr := "https://quic.clemente.io:6121"
|
|
||||||
|
|
||||||
utils.SetLogLevel(utils.LogLevelDebug)
|
|
||||||
|
|
||||||
client, err := quic.NewClient(addr, func(bool) {}, func() error { return nil })
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = client.Listen()
|
|
||||||
defer client.Close(nil)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
41
example/client/main.go
Normal file
41
example/client/main.go
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"flag"
|
||||||
|
"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)
|
||||||
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
wg.Done()
|
||||||
|
}(addr)
|
||||||
|
}
|
||||||
|
wg.Wait()
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue