diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-25 15:56:24 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-25 15:56:24 +0000 |
commit | 6967ae698477e809eb79f71e8ee2b9db37c9183a (patch) | |
tree | 1decc90a7a3407dfdf7cdc3ff4aa11c2aa9ef862 /usr.sbin/pppd/fsm.h | |
parent | 22a628436b9c63f1069f0a15af3684d68574d575 (diff) |
From NetBSD: merge of 960317
Diffstat (limited to 'usr.sbin/pppd/fsm.h')
-rw-r--r-- | usr.sbin/pppd/fsm.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/pppd/fsm.h b/usr.sbin/pppd/fsm.h index d29dba5146a..bf54f43ec84 100644 --- a/usr.sbin/pppd/fsm.h +++ b/usr.sbin/pppd/fsm.h @@ -1,3 +1,5 @@ +/* $OpenBSD: fsm.h,v 1.2 1996/03/25 15:55:39 niklas Exp $ */ + /* * fsm.h - {Link, IP} Control Protocol Finite State Machine definitions. * @@ -15,8 +17,6 @@ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - * - * $Id: fsm.h,v 1.1 1995/10/18 08:47:58 deraadt Exp $ */ /* @@ -74,6 +74,8 @@ typedef struct fsm { int nakloops; /* Number of nak loops since last ack */ int maxnakloops; /* Maximum number of nak loops tolerated */ fsm_callbacks *callbacks; /* Callback routines */ + char *term_reason; /* Reason for closing protocol */ + int term_reason_len; /* Length of term_reason */ } fsm; @@ -116,7 +118,7 @@ void fsm_init __P((fsm *)); void fsm_lowerup __P((fsm *)); void fsm_lowerdown __P((fsm *)); void fsm_open __P((fsm *)); -void fsm_close __P((fsm *)); +void fsm_close __P((fsm *, char *)); void fsm_input __P((fsm *, u_char *, int)); void fsm_protreject __P((fsm *)); void fsm_sdata __P((fsm *, int, int, u_char *, int)); |