diff options
Diffstat (limited to 'Linux-PAM/modules/pam_radius/pam_radius.h')
-rw-r--r-- | Linux-PAM/modules/pam_radius/pam_radius.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Linux-PAM/modules/pam_radius/pam_radius.h b/Linux-PAM/modules/pam_radius/pam_radius.h new file mode 100644 index 00000000..8193c844 --- /dev/null +++ b/Linux-PAM/modules/pam_radius/pam_radius.h @@ -0,0 +1,40 @@ +/* + * $Id: pam_radius.h,v 1.1.1.1 2001/04/29 04:17:32 hartmans Exp $ + */ + +#ifndef PAM_RADIUS_H +#define PAM_RADIUS_H + +#include <security/_pam_aconf.h> + +#include <stdio.h> + +#ifndef __USE_POSIX2 +#define __USE_POSIX2 +#endif /* __USE_POSIX2 */ + +#include <stdlib.h> + +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/resource.h> + +#include <unistd.h> +#include <string.h> +#include <ctype.h> +#include <syslog.h> +#include <stdarg.h> +#include <utmp.h> +#include <time.h> +#include <netdb.h> + +#include <netinet/in.h> +#include <rpcsvc/ypclnt.h> +#include <rpc/rpc.h> + +#include <pwdb/radius.h> +#include <pwdb/pwdb_radius.h> + +/******************************************************************/ + +#endif /* PAM_RADIUS_H */ |