diff options
author | nicm <nicm> | 2020-05-21 07:24:13 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-21 07:24:13 +0000 |
commit | 31e3f2d530090793815d145a16a1ce3b469c4266 (patch) | |
tree | cdca6cd9bcf0eea85d61053f1bb4aa2d2d1c81a7 /notify.c | |
parent | 6bde1c183766d0637633c1460cf6b17b57bc0280 (diff) | |
download | rtmux-31e3f2d530090793815d145a16a1ce3b469c4266.tar.gz rtmux-31e3f2d530090793815d145a16a1ce3b469c4266.tar.bz2 rtmux-31e3f2d530090793815d145a16a1ce3b469c4266.zip |
Support code for control mode flow control: allow clients to have
separate offsets (used and acknowleged) into the pane buffers; turn off
reading from panes when no clients can accept the data; and add a -A
flag to refresh-client to let clients turn receiving a pane on and off.
Diffstat (limited to 'notify.c')
-rw-r--r-- | notify.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -210,17 +210,6 @@ notify_hook(struct cmdq_item *item, const char *name) } void -notify_input(struct window_pane *wp, const u_char *buf, size_t len) -{ - struct client *c; - - TAILQ_FOREACH(c, &clients, entry) { - if (c->flags & CLIENT_CONTROL) - control_notify_input(c, wp, buf, len); - } -} - -void notify_client(const char *name, struct client *c) { struct cmd_find_state fs; |