mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use log.Fatal() instead of panic() in example client and server
This commit is contained in:
parent
59c2c34dbc
commit
2ba4617463
2 changed files with 5 additions and 4 deletions
|
@ -6,6 +6,7 @@ import (
|
|||
"crypto/x509"
|
||||
"flag"
|
||||
"io"
|
||||
"log"
|
||||
"net/http"
|
||||
"sync"
|
||||
|
||||
|
@ -32,7 +33,7 @@ func main() {
|
|||
|
||||
pool, err := x509.SystemCertPool()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
log.Fatal(err)
|
||||
}
|
||||
testdata.AddRootCA(pool)
|
||||
roundTripper := &http3.RoundTripper{
|
||||
|
@ -53,14 +54,14 @@ func main() {
|
|||
go func(addr string) {
|
||||
rsp, err := hclient.Get(addr)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
log.Fatal(err)
|
||||
}
|
||||
logger.Infof("Got response for %s: %#v", addr, rsp)
|
||||
|
||||
body := &bytes.Buffer{}
|
||||
_, err = io.Copy(body, rsp.Body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
log.Fatal(err)
|
||||
}
|
||||
if *quiet {
|
||||
logger.Infof("Request Body: %d bytes", body.Len())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue