summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2010-11-09 08:28:23 +0000
committerChristian Pointner <equinox@spreadspace.org>2010-11-09 08:28:23 +0000
commit901d32d8a9102bdf0aea3de418db1e1670c5d964 (patch)
tree5dd13023c108a468d38f84a910bdb77e409eb04e
parentimproved client names (diff)
updated output of debug shell help command
git-svn-id: https://svn.spreadspace.org/gcsd/trunk@18 ac14a137-c7f1-4531-abe0-07747231d213
-rw-r--r--src/modules/debug_shell.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/debug_shell.lua b/src/modules/debug_shell.lua
index 4c0fb6c..a9ba707 100644
--- a/src/modules/debug_shell.lua
+++ b/src/modules/debug_shell.lua
@@ -211,6 +211,7 @@ function debug_shell:exec_cmd(socket)
socket.out_buffer = socket.out_buffer .. "!<lua code> execute lua code\n" ..
"quit quit this debug session\n" ..
"ping[ <data>] echo request (response will be 'pong[ <data>]')\n" ..
+ "disable close debug shell and close all connections\n" ..
"terminate terminate the daemon\n"
elseif(cmd == 'ping') then
if(sep == ' ') then socket.out_buffer = socket.out_buffer .. "pong " .. (param or "") .. "\n"