1998-01-29 01:44:16 +01: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.
|
|
|
|
*
|
1998-04-07 02:54:26 +02:00
|
|
|
* $Id: auth.h,v 1.10.2.6 1998/04/03 19:25:21 brian Exp $
|
1998-01-29 01:44:16 +01:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
1998-01-29 01:49:32 +01:00
|
|
|
struct physical;
|
1998-04-07 02:54:26 +02:00
|
|
|
struct bundle;
|
1998-01-29 01:49:32 +01:00
|
|
|
|
1998-01-29 01:44:16 +01:00
|
|
|
struct authinfo {
|
1998-03-01 02:07:49 +01:00
|
|
|
void (*ChallengeFunc)(struct authinfo *, int, struct physical *);
|
1998-01-29 01:44:16 +01:00
|
|
|
struct pppTimer authtimer;
|
|
|
|
int retry;
|
|
|
|
int id;
|
1998-01-29 01:49:32 +01:00
|
|
|
struct physical *physical;
|
1998-04-03 21:24:07 +02:00
|
|
|
struct {
|
|
|
|
u_int fsmretry;
|
|
|
|
} cfg;
|
1998-01-29 01:44:16 +01:00
|
|
|
};
|
|
|
|
|
1998-03-01 02:07:49 +01:00
|
|
|
extern void authinfo_Init(struct authinfo *);
|
|
|
|
|
1998-02-07 21:50:08 +01:00
|
|
|
extern const char *Auth2Nam(u_short);
|
1998-01-29 01:44:16 +01:00
|
|
|
extern void StopAuthTimer(struct authinfo *);
|
1998-03-01 02:07:49 +01:00
|
|
|
extern void StartAuthChallenge(struct authinfo *, struct physical *,
|
|
|
|
void (*fn)(struct authinfo *, int, struct physical *));
|
1998-02-02 20:32:16 +01:00
|
|
|
extern int AuthValidate(struct bundle *, const char *, const char *,
|
|
|
|
const char *, struct physical *);
|
|
|
|
extern char *AuthGetSecret(struct bundle *, const char *, const char *, int,
|
|
|
|
int, struct physical *);
|