From 0ff419f2a5ec990de3a7054289268be9317f7296 Mon Sep 17 00:00:00 2001 From: Kai Luo Date: Fri, 5 Apr 2024 17:31:56 +0800 Subject: [PATCH] Change command line options --- s5/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s5/main.go b/s5/main.go index 5017863..b59d617 100644 --- a/s5/main.go +++ b/s5/main.go @@ -13,7 +13,7 @@ import ( func main() { var localAddr string - flag.StringVar(&localAddr, "c", "localhost:1080", "Address of local server") + flag.StringVar(&localAddr, "l", "localhost:1080", "Address of local server") flag.Parse() log.SetFlags(log.LstdFlags | log.Lshortfile) udpAddrChan := make(chan *net.UDPAddr)