summaryrefslogtreecommitdiff
path: root/pppd/tty.c
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2001-03-12 22:59:01 +0000
committerPaul Mackerras <paulus@samba.org>2001-03-12 22:59:01 +0000
commit392a4f54cb25e48eed9cf5443febeeba7eaf7cbc (patch)
tree4bad2aabdeefee1d7e7af11035385da6978fb92a /pppd/tty.c
parent2d2fefe2c60d60a34491b0f7b2f904aeb39847c1 (diff)
downloadppp-392a4f54cb25e48eed9cf5443febeeba7eaf7cbc.tar.gz
make establish/disestablish_ppp members of the channel struct,
make restore_loop part of disestablish_ppp
Diffstat (limited to 'pppd/tty.c')
-rw-r--r--pppd/tty.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pppd/tty.c b/pppd/tty.c
index f245427..b21a158 100644
--- a/pppd/tty.c
+++ b/pppd/tty.c
@@ -20,7 +20,7 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id: tty.c,v 1.5 2001/03/08 05:11:16 paulus Exp $"
+#define RCSID "$Id: tty.c,v 1.6 2001/03/12 22:59:01 paulus Exp $"
#include <stdio.h>
#include <ctype.h>
@@ -197,6 +197,8 @@ struct channel tty_channel = {
&tty_check_options,
&connect_tty,
&disconnect_tty,
+ &tty_establish_ppp,
+ &tty_disestablish_ppp,
&tty_do_send_config,
&tty_recv_config,
&cleanup_tty,