diff options
author | Brian Somers <brian@FreeBSD.org> | 1998-01-29 00:49:32 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1998-01-29 00:49:32 +0000 |
commit | 63b7346316afa0c20b6cf22506bcc53abc9f08f8 (patch) | |
tree | 0f029d822049c079452af8d60be4419d8bbace89 /usr.sbin/ppp/chap.h | |
parent | 1ae349f52c53416e04f1d038a8210f1a9fa7db2c (diff) | |
download | src-test2-63b7346316afa0c20b6cf22506bcc53abc9f08f8.tar.gz src-test2-63b7346316afa0c20b6cf22506bcc53abc9f08f8.zip |
Notes
Diffstat (limited to 'usr.sbin/ppp/chap.h')
-rw-r--r-- | usr.sbin/ppp/chap.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ppp/chap.h b/usr.sbin/ppp/chap.h index ba178b6dab80..e9fc820b5017 100644 --- a/usr.sbin/ppp/chap.h +++ b/usr.sbin/ppp/chap.h @@ -15,11 +15,13 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: chap.h,v 1.8 1997/10/26 01:02:19 brian Exp $ + * $Id: chap.h,v 1.9 1997/10/26 12:42:08 brian Exp $ * * TODO: */ +struct physical; + #define CHAP_CHALLENGE 1 #define CHAP_RESPONSE 2 #define CHAP_SUCCESS 3 @@ -27,4 +29,4 @@ extern struct authinfo AuthChapInfo; -extern void ChapInput(struct mbuf *); +extern void ChapInput(struct mbuf *, struct physical *); |