mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add some useful options to example server (commented out)
This commit is contained in:
parent
52d734f644
commit
d77120a921
1 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,8 @@ func main() {
|
|||
go func() {
|
||||
log.Println(http.ListenAndServe("localhost:6060", nil))
|
||||
}()
|
||||
// runtime.SetBlockProfileRate(1)
|
||||
|
||||
verbose := flag.Bool("v", false, "verbose")
|
||||
bindTo := flag.String("bind", "localhost", "bind to")
|
||||
certPath := flag.String("certpath", "", "certificate directory")
|
||||
|
@ -57,6 +59,8 @@ func main() {
|
|||
panic(err)
|
||||
}
|
||||
|
||||
// server.CloseAfterFirstRequest = true
|
||||
|
||||
err = server.ListenAndServe(*bindTo+":6121", nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue