summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authoramurai <amurai@FreeBSD.org>1995-02-27 03:18:28 +0000
committeramurai <amurai@FreeBSD.org>1995-02-27 03:18:28 +0000
commit53da9c0eb839b3e5c43f0024813ab2b81b150198 (patch)
treed36ae118aad97d653ad398f2eec053e8769ca792 /usr.sbin
parentf3d11ea6aeb8a82f3dc17f012299594378831512 (diff)
downloadFreeBSD-src-53da9c0eb839b3e5c43f0024813ab2b81b150198.zip
FreeBSD-src-53da9c0eb839b3e5c43f0024813ab2b81b150198.tar.gz
Compile error occured by missing auth.h/cdefs.h
Reviewed by: amurai@spec.co.jp
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ppp/auth.h42
-rw-r--r--usr.sbin/ppp/cdefs.h33
-rw-r--r--usr.sbin/ppp/fsm.h2
-rw-r--r--usr.sbin/ppp/lcp.h2
-rw-r--r--usr.sbin/ppp/lcpproto.h2
-rw-r--r--usr.sbin/ppp/log.h2
-rw-r--r--usr.sbin/ppp/modem.h2
-rw-r--r--usr.sbin/ppp/timeout.h2
8 files changed, 81 insertions, 6 deletions
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 <sys/cdefs.h>
+#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 <netinet/in.h>
#include "timeout.h"
-#include <sys/cdefs.h>
+#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 <sys/cdefs.h>
+#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 <sys/cdefs.h>
+#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 <sys/cdefs.h>
+#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 <termios.h>
#include "mbuf.h"
-#include <sys/cdefs.h>
+#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 <sys/cdefs.h>
+#include "cdefs.h"
#define TICKUNIT 100000 /* Unit in usec */
#define SECTICKS (1000000/TICKUNIT)
OpenPOWER on IntegriCloud