diff options
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: auth.h,v 1.93 2017/08/18 05:36:45 djm Exp $ */ | 1 | /* $OpenBSD: auth.h,v 1.94 2018/01/08 15:21:49 markus Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2000 Markus Friedl. All rights reserved. | 4 | * Copyright (c) 2000 Markus Friedl. All rights reserved. |
@@ -221,6 +221,12 @@ void auth_debug_reset(void); | |||
221 | 221 | ||
222 | struct passwd *fakepw(void); | 222 | struct passwd *fakepw(void); |
223 | 223 | ||
224 | #define SSH_SUBPROCESS_STDOUT_DISCARD (1) /* Discard stdout */ | ||
225 | #define SSH_SUBPROCESS_STDOUT_CAPTURE (1<<1) /* Redirect stdout */ | ||
226 | #define SSH_SUBPROCESS_STDERR_DISCARD (1<<2) /* Discard stderr */ | ||
227 | pid_t subprocess(const char *, struct passwd *, | ||
228 | const char *, int, char **, FILE **, u_int flags); | ||
229 | |||
224 | int sys_auth_passwd(Authctxt *, const char *); | 230 | int sys_auth_passwd(Authctxt *, const char *); |
225 | 231 | ||
226 | #define SKEY_PROMPT "\nS/Key Password: " | 232 | #define SKEY_PROMPT "\nS/Key Password: " |