summaryrefslogtreecommitdiff
path: root/attach.c
diff options
context:
space:
mode:
authorNed T. Crigler <crigler@users.sourceforge.net>2004-06-24 01:57:02 +0000
committerNed T. Crigler <crigler@users.sourceforge.net>2004-06-24 01:57:02 +0000
commita5599b4610788c17f5166685612f48c71d7537ac (patch)
tree97826e9812b600d3c4777bd265c932700c63babe /attach.c
parent302917ca33d7cdfac786f562986b2c669f64ad49 (diff)
Allow the redraw method to be chosen by the user, and include the old Ctrl L
character method again.
Diffstat (limited to 'attach.c')
-rw-r--r--attach.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/attach.c b/attach.c
index 26ca9fd..5fe18a2 100644
--- a/attach.c
+++ b/attach.c
@@ -96,7 +96,7 @@ process_kbd(int s, struct packet *pkt)
{
/* Tell the master that we are suspending. */
pkt->type = MSG_DETACH;
- write(s, pkt, sizeof(*pkt));
+ write(s, pkt, sizeof(struct packet));
/* And suspend... */
tcsetattr(0, TCSADRAIN, &orig_term);
@@ -106,8 +106,13 @@ process_kbd(int s, struct packet *pkt)
/* Tell the master that we are returning. */
pkt->type = MSG_ATTACH;
+ write(s, pkt, sizeof(struct packet));
+
+ /* We would like a redraw, too. */
+ pkt->type = MSG_REDRAW;
+ pkt->len = redraw_method;
ioctl(0, TIOCGWINSZ, &pkt->u.ws);
- write(s, pkt, sizeof(*pkt));
+ write(s, pkt, sizeof(struct packet));
return;
}
/* Detach char? */
@@ -121,7 +126,7 @@ process_kbd(int s, struct packet *pkt)
win_changed = 1;
/* Push it out */
- write(s, pkt, sizeof(*pkt));
+ write(s, pkt, sizeof(struct packet));
}
int
@@ -176,8 +181,13 @@ attach_main(int noerror)
/* Tell the master that we want to attach. */
pkt.type = MSG_ATTACH;
+ write(s, &pkt, sizeof(struct packet));
+
+ /* We would like a redraw, too. */
+ pkt.type = MSG_REDRAW;
+ pkt.len = redraw_method;
ioctl(0, TIOCGWINSZ, &pkt.u.ws);
- write(s, &pkt, sizeof(pkt));
+ write(s, &pkt, sizeof(struct packet));
/* Wait for things to happen */
while (1)