mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add verbose flag to example server
This commit is contained in:
parent
02ab3480ff
commit
3cfc9b66a8
1 changed files with 7 additions and 2 deletions
|
@ -13,13 +13,18 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
utils.SetLogLevel(utils.LogLevelDebug)
|
verbose := flag.Bool("v", false, "verbose")
|
||||||
|
|
||||||
bindTo := flag.String("bind", "localhost", "bind to")
|
bindTo := flag.String("bind", "localhost", "bind to")
|
||||||
certPath := flag.String("certpath", "", "certificate directory")
|
certPath := flag.String("certpath", "", "certificate directory")
|
||||||
www := flag.String("www", "/var/www", "www data")
|
www := flag.String("www", "/var/www", "www data")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
if *verbose {
|
||||||
|
utils.SetLogLevel(utils.LogLevelDebug)
|
||||||
|
} else {
|
||||||
|
utils.SetLogLevel(utils.LogLevelInfo)
|
||||||
|
}
|
||||||
|
|
||||||
var tlsConfig *tls.Config
|
var tlsConfig *tls.Config
|
||||||
if *certPath == "" {
|
if *certPath == "" {
|
||||||
tlsConfig = testdata.GetTLSConfig()
|
tlsConfig = testdata.GetTLSConfig()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue