aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorjames <>2008-02-28 12:12:25 +0000
committerjames <>2008-02-28 12:12:25 +0000
commit9a70b588086552c2f8a32b283061322426f62e84 (patch)
tree93bb7018b40de04e5a76e47a9cafb214bf34ad55 /apps
parente0ace86247de9c0f91cfb87188eff51df5508c7a (diff)
downloadsympathy-9a70b588086552c2f8a32b283061322426f62e84.tar.gz
sympathy-9a70b588086552c2f8a32b283061322426f62e84.tar.bz2
sympathy-9a70b588086552c2f8a32b283061322426f62e84.zip
*** empty log message ***
Diffstat (limited to 'apps')
-rw-r--r--apps/clients.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/clients.c b/apps/clients.c
index 598121e..c75c984 100644
--- a/apps/clients.c
+++ b/apps/clients.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.12 2008/02/28 12:12:24 james
+ * *** empty log message ***
+ *
* Revision 1.11 2008/02/23 11:48:51 james
* *** empty log message ***
*
@@ -85,6 +88,12 @@ client_msg (IPC_Msg * m, Context * c)
case IPC_MSG_TYPE_HANGUP:
tty_hangup (c->t);
break;
+ case IPC_MSG_TYPE_SETSIZE:
+ vt102_resize(c,m->setsize.winsize);
+ break;
+ case IPC_MSG_TYPE_RESET:
+ vt102_reset(c);
+ break;
default:
fprintf (stderr, "Unhandeled message type %d\n", m->hdr.type);
}