diff options
-rw-r--r-- | auth.h | 2 | ||||
-rw-r--r-- | monitor_wrap.h | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -180,6 +180,8 @@ int auth2_challenge(Authctxt *, char *); | |||
180 | void auth2_challenge_stop(Authctxt *); | 180 | void auth2_challenge_stop(Authctxt *); |
181 | int bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **); | 181 | int bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **); |
182 | int bsdauth_respond(void *, u_int, char **); | 182 | int bsdauth_respond(void *, u_int, char **); |
183 | int skey_query(void *, char **, char **, u_int *, char ***, u_int **); | ||
184 | int skey_respond(void *, u_int, char **); | ||
183 | 185 | ||
184 | int allowed_user(struct passwd *); | 186 | int allowed_user(struct passwd *); |
185 | struct passwd * getpwnamallow(const char *user); | 187 | struct passwd * getpwnamallow(const char *user); |
diff --git a/monitor_wrap.h b/monitor_wrap.h index 2b8c18d6a..9a6aff684 100644 --- a/monitor_wrap.h +++ b/monitor_wrap.h | |||
@@ -98,6 +98,10 @@ void mm_send_keystate(struct monitor*); | |||
98 | int mm_bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **); | 98 | int mm_bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **); |
99 | int mm_bsdauth_respond(void *, u_int, char **); | 99 | int mm_bsdauth_respond(void *, u_int, char **); |
100 | 100 | ||
101 | /* skey */ | ||
102 | int mm_skey_query(void *, char **, char **, u_int *, char ***, u_int **); | ||
103 | int mm_skey_respond(void *, u_int, char **); | ||
104 | |||
101 | /* zlib allocation hooks */ | 105 | /* zlib allocation hooks */ |
102 | void mm_init_compression(struct mm_master *); | 106 | void mm_init_compression(struct mm_master *); |
103 | 107 | ||