Commit 8e8d4e8a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Remove declaration of unimplemented CLI commands. Most of these were

things we dreamt up without knowing what reality would look like.
parent 24d90483
...@@ -78,12 +78,6 @@ ...@@ -78,12 +78,6 @@
"\tList the active bans.", \ "\tList the active bans.", \
0, 0 0, 0
#define CLI_URL_STATUS \
"url.status", \
"url.status <url>", \
"\tReturns all metadata for the specified URL", \
1, 1
#define CLI_VCL_LOAD \ #define CLI_VCL_LOAD \
"vcl.load", \ "vcl.load", \
"vcl.load <configname> <filename>", \ "vcl.load <configname> <filename>", \
...@@ -132,30 +126,6 @@ ...@@ -132,30 +126,6 @@
"\tSet parameter value.", \ "\tSet parameter value.", \
2,2 2,2
#define CLI_SERVER_FREEZE \
"server.freeze", \
"server.freeze", \
"\tStop the clock, freeze object store.", \
0, 0
#define CLI_SERVER_THAW \
"thaw", \
"thaw", \
"\tRestart the clock, unfreeze object store.", \
0, 0
#define CLI_SERVER_SUSPEND \
"suspend", \
"suspend", \
"\tStop accepting requests.", \
0, 0
#define CLI_SERVER_RESUME \
"resume", \
"resume", \
"\tAccept requests.", \
0, 0
#define CLI_SERVER_STOP \ #define CLI_SERVER_STOP \
"stop", \ "stop", \
"stop", \ "stop", \
...@@ -168,42 +138,18 @@ ...@@ -168,42 +138,18 @@
"\tStart the Varnish cache process.", \ "\tStart the Varnish cache process.", \
0, 0 0, 0
#define CLI_SERVER_RESTART \
"restart", \
"restart", \
"\tRestart the Varnish cache process.", \
0, 0
#define CLI_PING \ #define CLI_PING \
"ping", \ "ping", \
"ping [timestamp]", \ "ping [timestamp]", \
"\tKeep connection alive", \ "\tKeep connection alive", \
0, 1 0, 1
#define CLI_STATS \
"stats", \
"stats", \
"\tShow summary statistics", \
0, 0
#define CLI_ZERO \
"zero", \
"zero", \
"\tZero summary statistics", \
0, 0
#define CLI_HELP \ #define CLI_HELP \
"help", \ "help", \
"help [command]", \ "help [command]", \
"\tShow command/protocol help", \ "\tShow command/protocol help", \
0, 1 0, 1
#define CLI_VERBOSE \
"verbose", \
"verbose", \
"\tEnable/Disable verbosity", \
0, 0
#define CLI_QUIT \ #define CLI_QUIT \
"quit", \ "quit", \
"quit", \ "quit", \
...@@ -240,9 +186,6 @@ ...@@ -240,9 +186,6 @@
"\tClear the last panic, if any.", \ "\tClear the last panic, if any.", \
0, 0 0, 0
#define CLI_HIDDEN(foo, min_arg, max_arg) \
foo, NULL, NULL, min_arg, max_arg,
/* /*
* Status/return codes in the CLI protocol * Status/return codes in the CLI protocol
*/ */
......
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