aboutsummaryrefslogtreecommitdiffstats
path: root/src/keydis.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keydis.c')
-rw-r--r--src/keydis.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/keydis.c b/src/keydis.c
index 02d412f..6188231 100644
--- a/src/keydis.c
+++ b/src/keydis.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.12 2008/03/03 18:15:19 james
+ * *** empty log message ***
+ *
* Revision 1.11 2008/03/03 06:04:42 james
* *** empty log message ***
*
@@ -187,6 +190,7 @@ keydis_vt102_send_break (KeyDis * _t, Context * c)
{
KeyDis_VT102 *t = (KeyDis_VT102 *) _t;
+ log_f (c->l, "<break sent>");
tty_send_break (c->t);
return 0;
@@ -197,6 +201,7 @@ keydis_vt102_set_flow (KeyDis * _t, Context * c, int flow)
{
KeyDis_VT102 *t = (KeyDis_VT102 *) _t;
+ log_f (c->l, "<flow control turned %s>",flow?"on":"off");
tty_set_flow (c->t, flow);
return 0;
@@ -218,6 +223,7 @@ keydis_vt102_hangup (KeyDis * _t, Context * c)
{
KeyDis_VT102 *t = (KeyDis_VT102 *) _t;
+ log_f (c->l, "<hangup initiated>");
tty_hangup (c->t);
return 0;