summaryrefslogtreecommitdiffstats
path: root/cmd-detach-client.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-06-18 09:15:22 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-06-18 09:15:22 +0000
commit038e8b770d3ae551e9547a22d595877d237c2891 (patch)
treeca07a4e1c04db6e3776f355c8d69a7aa828d99b7 /cmd-detach-client.c
parent04ac61ecd7ae7fb2f36ee534e4999ea9e84db759 (diff)
Add -a flag for detach-client, from Thomas Adam.
Diffstat (limited to 'cmd-detach-client.c')
-rw-r--r--cmd-detach-client.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/cmd-detach-client.c b/cmd-detach-client.c
index d8642757..6477e062 100644
--- a/cmd-detach-client.c
+++ b/cmd-detach-client.c
@@ -28,8 +28,8 @@ int cmd_detach_client_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_detach_client_entry = {
"detach-client", "detach",
- "s:t:P", 0, 0,
- "[-P] [-s target-session] " CMD_TARGET_CLIENT_USAGE,
+ "as:t:P", 0, 0,
+ "[-P] [-a] [-s target-session] " CMD_TARGET_CLIENT_USAGE,
CMD_READONLY,
NULL,
NULL,
@@ -40,7 +40,7 @@ int
cmd_detach_client_exec(struct cmd *self, struct cmd_ctx *ctx)
{
struct args *args = self->args;
- struct client *c;
+ struct client *c, *c2;
struct session *s;
enum msgtype msgtype;
u_int i;
@@ -65,7 +65,15 @@ cmd_detach_client_exec(struct cmd *self, struct cmd_ctx *ctx)
if (c == NULL)
return (-1);
- server_write_client(c, msgtype, NULL, 0);
+ if (args_has(args, 'a')) {
+ for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
+ c2 = ARRAY_ITEM(&clients, i);
+ if (c2 == NULL || c == c2)
+ continue;
+ server_write_client(c2, msgtype, NULL, 0);
+ }
+ } else
+ server_write_client(c, msgtype, NULL, 0);
}
return (0);