Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
esrrhs committed Jan 7, 2020
1 parent c66a918 commit e0c5fd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Usage:
-tcp_bs tcp的发送接收缓冲区大小,默认1MB
Tcp send and receive buffer size, default 1MB
-tcp_mw tcp的最大窗口,默认100000
The maximum window of tcp, the default is 100000
-tcp_mw tcp的最大窗口,默认10000
The maximum window of tcp, the default is 10000
-tcp_rst tcp的超时发送时间,默认400ms
Tcp timeout resend time, default 400ms
Expand Down Expand Up @@ -114,7 +114,7 @@ func main() {
key := flag.Int("key", 0, "key")
tcpmode := flag.Int("tcp", 0, "tcp mode")
tcpmode_buffersize := flag.Int("tcp_bs", 1*1024*1024, "tcp mode buffer size")
tcpmode_maxwin := flag.Int("tcp_mw", 100000, "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_compress := flag.Int("tcp_gz", 0, "tcp data compress")
nolog := flag.Int("nolog", 0, "write log file")
Expand Down

0 comments on commit e0c5fd7

Please sign in to comment.