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.
|
|
|
|
*
|
1998-05-21 21:49:08 +00:00
|
|
|
* $Id: auth.h,v 1.10.2.9 1998/05/01 19:23:54 brian Exp $
|
1995-02-27 03:18:28 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
1998-01-29 00:49:32 +00:00
|
|
|
struct physical;
|
1998-04-07 00:54:26 +00:00
|
|
|
struct bundle;
|
1995-02-27 03:18:28 +00:00
|
|
|
|
|
|
|
struct authinfo {
|
1998-03-01 01:07:49 +00:00
|
|
|
void (*ChallengeFunc)(struct authinfo *, int, struct physical *);
|
1995-02-27 03:18:28 +00:00
|
|
|
struct pppTimer authtimer;
|
|
|
|
int retry;
|
|
|
|
int id;
|
1998-01-29 00:49:32 +00:00
|
|
|
struct physical *physical;
|
1998-04-03 19:24:07 +00:00
|
|
|
struct {
|
|
|
|
u_int fsmretry;
|
|
|
|
} cfg;
|
1995-02-27 03:18:28 +00:00
|
|
|
};
|
|
|
|
|
1998-02-07 20:50:08 +00:00
|
|
|
extern const char *Auth2Nam(u_short);
|
1998-05-01 19:26:12 +00:00
|
|
|
|
|
|
|
extern void auth_Init(struct authinfo *);
|
|
|
|
extern void auth_StopTimer(struct authinfo *);
|
|
|
|
extern void auth_StartChallenge(struct authinfo *, struct physical *,
|
|
|
|
void (*fn)(struct authinfo *, int,
|
|
|
|
struct physical *));
|
|
|
|
extern int auth_Validate(struct bundle *, const char *, const char *,
|
|
|
|
struct physical *);
|
|
|
|
extern char *auth_GetSecret(struct bundle *, const char *, int,
|
|
|
|
struct physical *);
|
|
|
|
extern int auth_Select(struct bundle *, const char *, struct physical *);
|