Big reorganisation of command-line syntax.

This commit is contained in:
Nicholas Marriott
2008-06-05 21:25:00 +00:00
parent ee1a7fded7
commit 0b9b873a55
42 changed files with 963 additions and 1574 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-detach-client.c,v 1.5 2008-06-05 16:35:31 nicm Exp $ */
/* $Id: cmd-detach-client.c,v 1.6 2008-06-05 21:25:00 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -28,23 +28,24 @@ void cmd_detach_client_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_detach_client_entry = {
"detach-client", "detach",
CMD_CLIENTONLY_USAGE,
CMD_TARGET_CLIENT_USAGE,
0,
cmd_clientonly_parse,
cmd_target_init,
cmd_target_parse,
cmd_detach_client_exec,
cmd_clientonly_send,
cmd_clientonly_recv,
cmd_clientonly_free,
NULL,
cmd_clientonly_print
cmd_target_send,
cmd_target_recv,
cmd_target_free,
cmd_target_print
};
void
cmd_detach_client_exec(struct cmd *self, struct cmd_ctx *ctx)
{
struct client *c;
struct cmd_target_data *data = self->data;
struct client *c;
if ((c = cmd_clientonly_get(self, ctx)) == NULL)
if ((c = cmd_find_client(ctx, data->target)) == NULL)
return;
server_write_client(c, MSG_DETACH, NULL, 0);