summaryrefslogtreecommitdiff
path: root/auth.h
blob: 72126e0992d9bb5834e07c233ac322dafec32429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef AUTH_H
#define AUTH_H

void	do_authentication(void);
void	do_authentication2(void);

struct passwd *
auth_get_user(void);

int allowed_user(struct passwd * pw);;

#define AUTH_FAIL_MAX 6
#define AUTH_FAIL_LOG (AUTH_FAIL_MAX/2)
#define AUTH_FAIL_MSG "Too many authentication failures for %.100s"

#endif