aboutsummaryrefslogtreecommitdiffstats
path: root/apps/clients.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/clients.c')
-rw-r--r--apps/clients.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/clients.c b/apps/clients.c
index 40713a9..01d5995 100644
--- a/apps/clients.c
+++ b/apps/clients.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.6 2008/02/15 03:32:07 james
+ * *** empty log message ***
+ *
* Revision 1.5 2008/02/14 10:34:47 james
* *** empty log message ***
*
@@ -44,6 +47,15 @@ client_msg (IPC_Msg * m, Context * c)
case IPC_MSG_TYPE_KEY:
vt102_send (c, m->key.key);
break;
+ case IPC_MSG_TYPE_SETBAUD:
+ tty_set_baud (c->t, m->setbaud.baud);
+ break;
+ case IPC_MSG_TYPE_SENDBREAK:
+ tty_send_break (c->t);
+ break;
+ case IPC_MSG_TYPE_SETFLOW:
+ tty_set_flow (c->t, m->setflow.flow);
+ break;
default:
fprintf (stderr, "Unhandeled message type %d\n", m->hdr.type);
}