/* * x99_rad.h * $Id: x99_rad.h,v 1.4 2002/07/18 06:05:21 fcusack Exp $ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Copyright 2001,2002 Google, Inc. */ #ifndef X99_RAD_H #define X99_RAD_H #include "radiusd.h" #define X99_LOG_ERR L_ERR #define X99_LOG_AUTH L_AUTH #define X99_LOG_INFO L_INFO #define X99_LOG_CRIT (L_ERR|L_CONS) /* x99_state.c */ extern int x99_gen_state(char **ascii_state, unsigned char **raw_state, const char challenge[MAX_CHALLENGE_LEN + 1], int32_t flags, int32_t when, const unsigned char key[16]); /* x99_pwe.c */ #include "libradius.h" /* VALUE_PAIR */ extern void x99_pwe_init(void); extern int x99_pw_present(const REQUEST *request); extern int x99_pw_valid(const REQUEST *request, x99_token_t *inst, int attr, const char *password, VALUE_PAIR **vps); #endif /* X99_RAD_H */