summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@csail.mit.edu>2016-09-22 07:50:00 -0400
committerGravatar GitHub <noreply@github.com>2016-09-22 07:50:00 -0400
commit27ab3e9439fab075c6c2ec1f88a603cd4f005caa (patch)
tree387c58aefcfad6d2363199bcf366c78ae4983255
parent607e95260ba61e92a6fd23cd16ef8b330245db2a (diff)
parent9305df7901c0109675a9f52a2a81c3820019f9f4 (diff)
Merge pull request #52 from sielenk/ipv6
Updates the help text to cover the new ipv6 option
-rw-r--r--src/c/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/http.c b/src/c/http.c
index 2c409c04..d186e209 100644
--- a/src/c/http.c
+++ b/src/c/http.c
@@ -314,7 +314,7 @@ static void *worker(void *data) {
}
static void help(char *cmd) {
- printf("Usage: %s [-p <port>] [-a <IP address>] [-t <thread count>] [-k] [-q] [-T SEC]\nThe '-k' option turns on HTTP keepalive.\nThe '-q' option turns off some chatter on stdout.\nThe '-T' option sets socket recv timeout (0 disables timeout, default is 5 sec).\n", cmd);
+ printf("Usage: %s [-p <port>] [-a <IPv4 address>] [-A <IPv6 address>] [-t <thread count>] [-k] [-q] [-T SEC]\nThe '-k' option turns on HTTP keepalive.\nThe '-q' option turns off some chatter on stdout.\nThe '-T' option sets socket recv timeout (0 disables timeout, default is 5 sec).\n", cmd);
}
static void sigint(int signum) {