Skip to content

Commit

Permalink
Correction of some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hojabri committed Apr 18, 2020
1 parent 31b4427 commit 4ac5c7b
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 @@ -17,16 +17,16 @@ type Config struct {
var (
numThreads = flag.Int("t", 1, "the numbers of threads used")
method = flag.String("m", "GET", "the http request method")
requestBody = flag.String("b", "", "the http requst body")
requestBodyFile = flag.String("p", "", "the http requst body data file")
requestBody = flag.String("b", "", "the http request body")
requestBodyFile = flag.String("p", "", "the http request body data file")
numConnections = flag.Int("c", 100, "the max numbers of connections used")
totalCalls = flag.Int("n", 1000, "the total number of calls processed")
disableKeepAlives = flag.Bool("k", true, "if keep-alives are disabled")
dist = flag.String("d", "", "dist mode")
configFile = flag.String("f", "", "json config file")
config Config
target string
headers = flag.String("H", "User-Agent: go-wrk 0.1 bechmark\nContent-Type: text/html;", "the http headers sent separated by '\\n'")
headers = flag.String("H", "User-Agent: go-wrk 0.1 benchmark\nContent-Type: text/html;", "the http headers sent separated by '\\n'")
certFile = flag.String("cert", "someCertFile", "A PEM eoncoded certificate file.")
keyFile = flag.String("key", "someKeyFile", "A PEM encoded private key file.")
caFile = flag.String("CA", "someCertCAFile", "A PEM eoncoded CA's certificate file.")
Expand Down

0 comments on commit 4ac5c7b

Please sign in to comment.