comparison auth.h @ 1617:1fbe598a14fb

Merge bugfix delay invalid users
author Matt Johnston <matt@ucc.asn.au>
date Thu, 23 Aug 2018 23:43:45 +0800
parents 5d2d1021ca00
children e11ed628708b
comparison
equal deleted inserted replaced
1611:0196f4f83fee 1617:1fbe598a14fb
35 /* Server functions */ 35 /* Server functions */
36 void recv_msg_userauth_request(void); 36 void recv_msg_userauth_request(void);
37 void send_msg_userauth_failure(int partial, int incrfail); 37 void send_msg_userauth_failure(int partial, int incrfail);
38 void send_msg_userauth_success(void); 38 void send_msg_userauth_success(void);
39 void send_msg_userauth_banner(const buffer *msg); 39 void send_msg_userauth_banner(const buffer *msg);
40 void svr_auth_password(void); 40 void svr_auth_password(int valid_user);
41 void svr_auth_pubkey(void); 41 void svr_auth_pubkey(int valid_user);
42 void svr_auth_pam(void); 42 void svr_auth_pam(int valid_user);
43 43
44 #if DROPBEAR_SVR_PUBKEY_OPTIONS_BUILT 44 #if DROPBEAR_SVR_PUBKEY_OPTIONS_BUILT
45 int svr_pubkey_allows_agentfwd(void); 45 int svr_pubkey_allows_agentfwd(void);
46 int svr_pubkey_allows_tcpfwd(void); 46 int svr_pubkey_allows_tcpfwd(void);
47 int svr_pubkey_allows_x11fwd(void); 47 int svr_pubkey_allows_x11fwd(void);