This commit is contained in:
esrrhs 2019-10-27 12:25:17 +08:00
parent 63e557b566
commit 7b88a879e1

View File

@ -39,8 +39,8 @@ Usage:
-tcp 设置是否转发tcp默认false -tcp 设置是否转发tcp默认false
Set the switch to forward tcp, the default is false Set the switch to forward tcp, the default is false
-tcp_bs tcp的发送接收缓冲区大小默认1MB -tcp_bs tcp的发送接收缓冲区大小默认10MB
Tcp send and receive buffer size, default 1MB Tcp send and receive buffer size, default 10MB
-tcp_mw tcp的最大窗口默认10000 -tcp_mw tcp的最大窗口默认10000
The maximum window of tcp, the default is 10000 The maximum window of tcp, the default is 10000
@ -58,7 +58,7 @@ func main() {
timeout := flag.Int("timeout", 60, "conn timeout") timeout := flag.Int("timeout", 60, "conn timeout")
key := flag.Int("key", 0, "key") key := flag.Int("key", 0, "key")
tcpmode := flag.Int("tcp", 0, "tcp mode") tcpmode := flag.Int("tcp", 0, "tcp mode")
tcpmode_buffersize := flag.Int("tcp_bs", 1024*1024, "tcp mode buffer size") tcpmode_buffersize := flag.Int("tcp_bs", 10*1024*1024, "tcp mode buffer size")
tcpmode_maxwin := flag.Int("tcp_mw", 10000, "tcp mode max win") tcpmode_maxwin := flag.Int("tcp_mw", 10000, "tcp mode max win")
tcpmode_resend_timems := flag.Int("tcp_rst", 400, "tcp mode resend time ms") tcpmode_resend_timems := flag.Int("tcp_rst", 400, "tcp mode resend time ms")
flag.Usage = func() { flag.Usage = func() {