Commit 2552d36f authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add -start and -wait for clients for async execution



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2697 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 507ee809
......@@ -185,6 +185,14 @@ cmd_client(char **av, void *priv)
assert(c->naddr > 0);
continue;
}
if (!strcmp(*av, "-start")) {
client_start(c);
continue;
}
if (!strcmp(*av, "-wait")) {
client_wait(c);
continue;
}
if (!strcmp(*av, "-run")) {
client_run(c);
continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment