Commit 2b2cbe0a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add a protocol version number ("1.0") to the ping response.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2959 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 4c5b3ea4
......@@ -191,5 +191,5 @@ cli_func_ping(struct cli *cli, const char * const *av, void *priv)
(void)priv;
(void)av;
t = time(NULL);
cli_out(cli, "PONG %ld", t);
cli_out(cli, "PONG %ld 1.0", t);
}
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