1995-02-27 03:18:28 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
1997-11-22 03:37:54 +00:00
|
|
|
* $Id: auth.h,v 1.9 1997/10/26 01:02:09 brian Exp $
|
1995-02-27 03:18:28 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
1997-08-25 00:29:32 +00:00
|
|
|
typedef enum {
|
1997-10-26 01:04:02 +00:00
|
|
|
VALID,
|
|
|
|
INVALID,
|
|
|
|
NOT_FOUND
|
|
|
|
} LOCAL_AUTH_VALID;
|
1995-02-27 03:18:28 +00:00
|
|
|
|
|
|
|
struct authinfo {
|
1997-11-22 03:37:54 +00:00
|
|
|
void (*ChallengeFunc) (int);
|
1995-02-27 03:18:28 +00:00
|
|
|
struct pppTimer authtimer;
|
|
|
|
int retry;
|
|
|
|
int id;
|
|
|
|
};
|
|
|
|
|
1997-11-22 03:37:54 +00:00
|
|
|
extern LOCAL_AUTH_VALID LocalAuthValidate(const char *, const char *, const char *);
|
1997-06-09 03:27:43 +00:00
|
|
|
extern void StopAuthTimer(struct authinfo *);
|
|
|
|
extern void StartAuthChallenge(struct authinfo *);
|
1997-09-04 00:38:22 +00:00
|
|
|
extern void LocalAuthInit(void);
|
1997-11-22 03:37:54 +00:00
|
|
|
extern int AuthValidate(const char *, const char *, const char *);
|
|
|
|
extern char *AuthGetSecret(const char *, const char *, int, int);
|