#ifndef _USERAUTH_H_fef15abb_ #define _USERAUTH_H_fef15abb_ typedef struct cuastate CUASTATE; typedef struct suastate SUASTATE; #include "bpp.h" struct cuastate { LAYER *layer; UAALG *curalg; void *algpriv; ALGLIST *cando; unsigned char *(*pkthead)(CUASTATE *); } ; struct suastate { LAYER *layer; int haveuser; STR curuser; STR service; int nosuchuser; char *passwd; uid_t uid; gid_t gid; char *homedir; char *shell; } ; extern void send_failure(SUASTATE *, int); #endif