summaryrefslogtreecommitdiffstats
path: root/auth-pam.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2024-05-17 02:30:23 +0200
committerDamien Miller <djm@mindrot.org>2024-05-17 06:41:35 +0200
commit03e3de416ed7c34faeb692967737be4a7bbe2eb5 (patch)
tree6794217dbc0a1369e9d6e1b0a9f40534596a6648 /auth-pam.h
parentupstream: simplify exit message handling, which was more complicated (diff)
downloadopenssh-03e3de416ed7c34faeb692967737be4a7bbe2eb5.tar.xz
openssh-03e3de416ed7c34faeb692967737be4a7bbe2eb5.zip
upstream: Start the process of splitting sshd into separate
binaries. This step splits sshd into a listener and a session binary. More splits are planned. After this changes, the listener binary will validate the configuration, load the hostkeys, listen on port 22 and manage MaxStartups only. All session handling will be performed by a new sshd-session binary that the listener fork+execs. This reduces the listener process to the minimum necessary and sets us up for future work on the sshd-session binary. feedback/ok markus@ deraadt@ NB. if you're updating via source, please restart sshd after installing, otherwise you run the risk of locking yourself out. OpenBSD-Commit-ID: 43c04a1ab96cdbdeb53d2df0125a6d42c5f19934
Diffstat (limited to 'auth-pam.h')
-rw-r--r--auth-pam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth-pam.h b/auth-pam.h
index 9fcea270f..8d801c689 100644
--- a/auth-pam.h
+++ b/auth-pam.h
@@ -31,7 +31,7 @@ void start_pam(struct ssh *);
void finish_pam(void);
u_int do_pam_account(void);
void do_pam_session(struct ssh *);
-void do_pam_setcred(int );
+void do_pam_setcred(void);
void do_pam_chauthtok(void);
int do_pam_putenv(char *, char *);
char ** fetch_pam_environment(void);