Lines Matching defs:Authctxt
45 typedef struct Authctxt Authctxt; typedef
49 struct Authctxt { struct
50 sig_atomic_t success;
51 int authenticated; /* authenticated and alarms cancelled */
52 int postponed; /* authentication needs another step */
53 int valid; /* user exists and is allowed to login */
54 int attempt;
55 int failures;
56 int server_caused_failure;
57 int force_pwchange;
58 char *user; /* username sent by the client */
59 char *service;
60 struct passwd *pw; /* set if 'valid' */
61 char *style;
62 void *kbdintctxt;
86 int (*userauth)(Authctxt *authctxt); argument