summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/auth.h
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/ppp/auth.h
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/ppp/auth.h')
-rw-r--r--usr.sbin/ppp/auth.h42
1 files changed, 42 insertions, 0 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
OpenPOWER on IntegriCloud