diff options
author | Brian Somers <brian@FreeBSD.org> | 1998-02-09 19:21:11 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1998-02-09 19:21:11 +0000 |
commit | 42d4d396689ff18f91456f636cf531b2f116e79b (patch) | |
tree | a4bfb8429841a591d440c7e2330a4c092962e4c1 /usr.sbin/ppp/auth.c | |
parent | 68a0f0ccdd9bcbdcae9f57c27b1a2d99bfa53b99 (diff) | |
download | src-42d4d396689ff18f91456f636cf531b2f116e79b.tar.gz src-42d4d396689ff18f91456f636cf531b2f116e79b.zip |
o Introduce struct descriptor.
This will ultimately be a member of a list of descriptors and
their handler functions on which we need to select() in the
main loop.
o Make struct physical into a `sort' of struct descriptor.
Notes
Notes:
svn path=/cvs2svn/branches/MP/; revision=33194
Diffstat (limited to 'usr.sbin/ppp/auth.c')
-rw-r--r-- | usr.sbin/ppp/auth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/auth.c b/usr.sbin/ppp/auth.c index 0f2793da3943..e60098302f6c 100644 --- a/usr.sbin/ppp/auth.c +++ b/usr.sbin/ppp/auth.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: auth.c,v 1.27.2.5 1998/02/02 19:33:33 brian Exp $ + * $Id: auth.c,v 1.27.2.6 1998/02/07 20:49:18 brian Exp $ * * TODO: * o Implement check against with registered IP addresses. @@ -48,6 +48,7 @@ #include "hdlc.h" #include "async.h" #include "link.h" +#include "descriptor.h" #include "physical.h" #include "lcpproto.h" |