X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2Fradius%2Fradiusclient%2Fsrc%2Fradlogin.h;fp=pppd%2Fplugins%2Fradius%2Fradiusclient%2Fsrc%2Fradlogin.h;h=ac2af1ac2b4876edc9011788bbd640b3cad18cf1;hb=d95598c16f6a3feb4846db669601856bad15bb74;hp=0000000000000000000000000000000000000000;hpb=14768a012e45353cde5b60896ccc6b7528d90c69;p=ppp.git diff --git a/pppd/plugins/radius/radiusclient/src/radlogin.h b/pppd/plugins/radius/radiusclient/src/radlogin.h new file mode 100644 index 0000000..ac2af1a --- /dev/null +++ b/pppd/plugins/radius/radiusclient/src/radlogin.h @@ -0,0 +1,32 @@ +/* + * $Id: radlogin.h,v 1.1 2002/01/22 16:03:05 dfs Exp $ + * + * Copyright (C) 1996 Lars Fenneberg + * + * See the file COPYRIGHT for the respective terms and conditions. + * If the file is missing contact me at lf@elemental.net + * and I'll send you a copy. + * + */ + +#ifndef RADLOGIN_H +#define RADLOGIN_H + +#undef __P +#if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(WIN32) || defined(__cplusplus) +# define __P(protos) protos +#else +# define __P(protos) () +#endif + +typedef void (*LFUNC)(char *); + +/* radius.c */ +LFUNC auth_radius(UINT4, char *, char *); +void radius_login(char *); + +/* local.c */ +LFUNC auth_local __P((char *, char *)); +void local_login __P((char *)); + +#endif /* RADLOGIN_H */