summaryrefslogtreecommitdiffstats
path: root/cmd-command-prompt.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-11 00:48:42 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-11 00:48:42 +0000
commite3feb067a503b53da253e4ed877d212d6d73842c (patch)
treef0ebedf15d81253ae1d0437b6dc9f47cbccdc291 /cmd-command-prompt.c
parentee0a7cda880f01771470b2902839c5d6396057c3 (diff)
Server locking. set-password and lock-server commands, plus automatic locking.
Diffstat (limited to 'cmd-command-prompt.c')
-rw-r--r--cmd-command-prompt.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/cmd-command-prompt.c b/cmd-command-prompt.c
index 752ec7e8..0bf3c084 100644
--- a/cmd-command-prompt.c
+++ b/cmd-command-prompt.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-command-prompt.c,v 1.6 2008-09-26 06:45:25 nicm Exp $ */
+/* $Id: cmd-command-prompt.c,v 1.7 2009-01-11 00:48:42 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -28,7 +28,7 @@
void cmd_command_prompt_exec(struct cmd *, struct cmd_ctx *);
-void cmd_command_prompt_callback(void *, char *);
+int cmd_command_prompt_callback(void *, const char *);
const struct cmd_entry cmd_command_prompt_entry = {
"command-prompt", NULL,
@@ -55,14 +55,14 @@ cmd_command_prompt_exec(struct cmd *self, struct cmd_ctx *ctx)
if (c->prompt_string != NULL)
return;
- server_set_client_prompt(c, ":", cmd_command_prompt_callback, c);
+ server_set_client_prompt(c, ":", cmd_command_prompt_callback, c, 0);
if (ctx->cmdclient != NULL)
server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0);
}
-void
-cmd_command_prompt_callback(void *data, char *s)
+int
+cmd_command_prompt_callback(void *data, const char *s)
{
struct client *c = data;
struct cmd *cmd;
@@ -70,18 +70,18 @@ cmd_command_prompt_callback(void *data, char *s)
char *cause;
if (s == NULL)
- return;
+ return (0);
if (cmd_string_parse(s, &cmd, &cause) != 0) {
if (cause == NULL)
- return;
+ return (0);
*cause = toupper((u_char) *cause);
server_set_client_message(c, cause);
xfree(cause);
- return;
+ return (0);
}
if (cmd == NULL)
- return;
+ return (0);
ctx.msgdata = NULL;
ctx.cursession = c->session;
@@ -94,4 +94,8 @@ cmd_command_prompt_callback(void *data, char *s)
ctx.cmdclient = NULL;
cmd_exec(cmd, &ctx);
+
+ if (c->prompt_callback != (void *) &cmd_command_prompt_callback)
+ return (1);
+ return (0);
}