File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ type options struct {
30
30
TotalDuration time.Duration
31
31
ReadSize int
32
32
WriteSize int
33
- PassiveServer bool // supress server send
33
+ PassiveServer bool // suppress server send
34
34
}
35
35
36
36
func (h * hostList ) String () string {
@@ -57,8 +57,8 @@ func main() {
57
57
flag .StringVar (& app .totalDuration , "totalDuration" , "10s" , "test total duration" )
58
58
flag .IntVar (& app .opt .ReadSize , "readSize" , 20000 , "read buffer size in bytes" )
59
59
flag .IntVar (& app .opt .WriteSize , "writeSize" , 20000 , "write buffer size in bytes" )
60
- flag .BoolVar (& app .passiveClient , "passiveClient" , false , "supress client writes" )
61
- flag .BoolVar (& app .opt .PassiveServer , "passiveServer" , false , "supress server writes" )
60
+ flag .BoolVar (& app .passiveClient , "passiveClient" , false , "suppress client writes" )
61
+ flag .BoolVar (& app .opt .PassiveServer , "passiveServer" , false , "suppress server writes" )
62
62
63
63
flag .Parse ()
64
64
You can’t perform that action at this time.
0 commit comments