diff options
author | Brian Somers <brian@FreeBSD.org> | 1998-02-02 19:32:16 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1998-02-02 19:32:16 +0000 |
commit | 7a6f872047b686aa10864866e8c80b7d591f4f45 (patch) | |
tree | 1ddcf0984a59f7a40ff90ac252aa3e521e937b13 /usr.sbin/ppp/chap.h | |
parent | 7308ec6890afae98c7b0e239eeda8a11e452e198 (diff) |
Create `struct bundle' - the top level control structure.
This structure will eventually contain a list of NCPs (currently
only IPCP is supported) and a list of physical `struct link's.
It will also derive from a struct link itself.
Make ModemTimeout() static - it's way to dangerous to be called
from outside !
Bump version to 1.9. Our first MP release should be 2.0.
Notes
Notes:
svn path=/cvs2svn/branches/MP/; revision=33029
Diffstat (limited to 'usr.sbin/ppp/chap.h')
-rw-r--r-- | usr.sbin/ppp/chap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/chap.h b/usr.sbin/ppp/chap.h index e9fc820b5017..56d18e211374 100644 --- a/usr.sbin/ppp/chap.h +++ b/usr.sbin/ppp/chap.h @@ -15,7 +15,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: chap.h,v 1.9 1997/10/26 12:42:08 brian Exp $ + * $Id: chap.h,v 1.9.2.1 1998/01/29 00:49:14 brian Exp $ * * TODO: */ @@ -29,4 +29,4 @@ struct physical; extern struct authinfo AuthChapInfo; -extern void ChapInput(struct mbuf *, struct physical *); +extern void ChapInput(struct bundle *, struct mbuf *, struct physical *); |