From 53da9c0eb839b3e5c43f0024813ab2b81b150198 Mon Sep 17 00:00:00 2001 From: amurai Date: Mon, 27 Feb 1995 03:18:28 +0000 Subject: Compile error occured by missing auth.h/cdefs.h Reviewed by: amurai@spec.co.jp --- usr.sbin/ppp/auth.h | 42 ++++++++++++++++++++++++++++++++++++++++++ usr.sbin/ppp/cdefs.h | 33 +++++++++++++++++++++++++++++++++ usr.sbin/ppp/fsm.h | 2 +- usr.sbin/ppp/lcp.h | 2 +- usr.sbin/ppp/lcpproto.h | 2 +- usr.sbin/ppp/log.h | 2 +- usr.sbin/ppp/modem.h | 2 +- usr.sbin/ppp/timeout.h | 2 +- 8 files changed, 81 insertions(+), 6 deletions(-) create mode 100644 usr.sbin/ppp/auth.h create mode 100644 usr.sbin/ppp/cdefs.h (limited to 'usr.sbin') diff --git a/usr.sbin/ppp/auth.h b/usr.sbin/ppp/auth.h new file mode 100644 index 0000000..cab8695 --- /dev/null +++ b/usr.sbin/ppp/auth.h @@ -0,0 +1,42 @@ +/* + * Written by Toshiharu OHNO (tony-o@iij.ad.jp) + * + * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the Internet Initiative Japan. The name of the + * IIJ may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * 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:$ + * + * TODO: + */ + +#ifndef _AUTH_H_ +#define _AUTH_H_ + +typedef enum { VALID, INVALID, NOT_FOUND } LOCAL_AUTH_VALID; +LOCAL_AUTH_VALID LocalAuthValidate( char *, char *, char *); + +struct authinfo { + void (*ChallengeFunc)(); + struct pppTimer authtimer; + int retry; + int id; +}; +extern struct authinfo AuthPapInfo; +extern struct authinfo AuthChapInfo; + +extern void SendPapChallenge __P((int)); +extern void SendChapChallenge __P((int)); +extern void StopAuthTimer __P((struct authinfo *)); +extern void StartAuthChallenge __P((struct authinfo *)); +#endif diff --git a/usr.sbin/ppp/cdefs.h b/usr.sbin/ppp/cdefs.h new file mode 100644 index 0000000..85ba8a5 --- /dev/null +++ b/usr.sbin/ppp/cdefs.h @@ -0,0 +1,33 @@ +/* + * Written by Toshiharu OHNO (tony-o@iij.ad.jp) + * + * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * advertising materials, and other materials related to such + * distribution and use acknowledge that the software was developed + * by the Internet Initiative Japan. The name of the + * IIJ may not be used to endorse or promote products derived + * from this software without specific prior written permission. + * 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:$ + * + * TODO: + */ + +#ifndef __P +#ifdef __bsdi__ +#include +#else +#ifdef __STDC__ +#define __P(arg) arg +#else +#define __P(arg) () +#endif /* __STDC__ */ +#endif /* __bsdi__ */ +#endif /* __P */ diff --git a/usr.sbin/ppp/fsm.h b/usr.sbin/ppp/fsm.h index 741ca8f..e659ed6 100644 --- a/usr.sbin/ppp/fsm.h +++ b/usr.sbin/ppp/fsm.h @@ -26,7 +26,7 @@ #include "defs.h" #include #include "timeout.h" -#include +#include "cdefs.h" /* * State of machine diff --git a/usr.sbin/ppp/lcp.h b/usr.sbin/ppp/lcp.h index 6447a1a..33f0df1 100644 --- a/usr.sbin/ppp/lcp.h +++ b/usr.sbin/ppp/lcp.h @@ -22,7 +22,7 @@ #ifndef _LCP_H_ #define _LPC_H_ -#include +#include "cdefs.h" struct lcpstate { u_long his_mru; diff --git a/usr.sbin/ppp/lcpproto.h b/usr.sbin/ppp/lcpproto.h index ea1442f..306aee6 100644 --- a/usr.sbin/ppp/lcpproto.h +++ b/usr.sbin/ppp/lcpproto.h @@ -22,7 +22,7 @@ #ifndef _LCPPROTO_H_ #define _LCPPROTO_H_ -#include +#include "cdefs.h" /* * Definition of protocol numbers diff --git a/usr.sbin/ppp/log.h b/usr.sbin/ppp/log.h index c48ba25..2c33c7e 100644 --- a/usr.sbin/ppp/log.h +++ b/usr.sbin/ppp/log.h @@ -22,7 +22,7 @@ #ifndef _LOG_H_ #define _LOG_H_ -#include +#include "cdefs.h" /* * Definition of log level */ diff --git a/usr.sbin/ppp/modem.h b/usr.sbin/ppp/modem.h index 9afbdb1..53e3573 100644 --- a/usr.sbin/ppp/modem.h +++ b/usr.sbin/ppp/modem.h @@ -24,7 +24,7 @@ #define _MODEM_H_ #include #include "mbuf.h" -#include +#include "cdefs.h" extern int RawModem __P((int)); extern void UnrawModem __P((int)); diff --git a/usr.sbin/ppp/timeout.h b/usr.sbin/ppp/timeout.h index 7efb8c5..2fe9d28 100644 --- a/usr.sbin/ppp/timeout.h +++ b/usr.sbin/ppp/timeout.h @@ -22,7 +22,7 @@ #ifndef _TIMEOUT_H_ #define _TIMEOUT_H_ -#include +#include "cdefs.h" #define TICKUNIT 100000 /* Unit in usec */ #define SECTICKS (1000000/TICKUNIT) -- cgit v1.1