diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-07-23 06:04:52 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-07-23 06:07:19 +0200 |
commit | a917e973a1b90b40ff1e950df083364b48fc6c78 (patch) | |
tree | 8296724a55106610eba52ebde537627b43a37297 /readconf.h | |
parent | upstream: Add a StdinNull directive to ssh_config(5) that allows (diff) | |
download | openssh-a917e973a1b90b40ff1e950df083364b48fc6c78.tar.xz openssh-a917e973a1b90b40ff1e950df083364b48fc6c78.zip |
upstream: Add a ForkAfterAuthentication ssh_config(5) counterpart
to the ssh(1) -f flag. Last part of GHPR231 from Volker Diels-Grabsch. ok
dtucker
OpenBSD-Commit-ID: b18aeda12efdebe2093d55263c90fe4ea0bce0d3
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h index 08ca9e7a7..f7d53b067 100644 --- a/readconf.h +++ b/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.143 2021/07/23 04:00:59 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.144 2021/07/23 04:04:52 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -148,6 +148,7 @@ typedef struct { int request_tty; int session_type; int stdin_null; + int fork_after_authentication; int proxy_use_fdpass; |