[BACK]Return to auth.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/auth.h, Revision 1.4

1.1       markus      1: #ifndef AUTH_H
                      2: #define AUTH_H
                      3:
                      4: void   do_authentication(void);
1.2       markus      5: void   do_authentication2(void);
                      6:
                      7: struct passwd *
                      8: auth_get_user(void);
1.1       markus      9:
1.4     ! deraadt    10: int allowed_user(struct passwd * pw);
1.3       markus     11:
                     12: #define AUTH_FAIL_MAX 6
                     13: #define AUTH_FAIL_LOG (AUTH_FAIL_MAX/2)
                     14: #define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
                     15:
1.1       markus     16: #endif
1.3       markus     17: