Skip to content

Commit

Permalink
Fix listen flag description
Browse files Browse the repository at this point in the history
  • Loading branch information
titanous committed Apr 11, 2014
1 parent 05583c0 commit 2333fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heartbleeder.go
Expand Up @@ -34,7 +34,7 @@ func main() {
workers := flag.Int("workers", runtime.NumCPU()*10, "Number of workers to scan hosts with, only used with hostfile flag")
retryDelay := flag.Duration("retry", 10*time.Second, "Seconds to wait before retesting a host after an unfavorable response")
refreshDelay := flag.Duration("refresh", 10*time.Minute, "Seconds to wait before rechecking secure hosts")
listen := flag.String("listen", "localhost:5000", "Host:port to serve heartbleed page")
listen := flag.String("listen", "localhost:5000", "Address to serve HTTP dashboard from")
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: %s [options] host[:443]\n", os.Args[0])
fmt.Fprintf(os.Stderr, "Options:\n")
Expand Down

0 comments on commit 2333fcb

Please sign in to comment.