diff options
author | djm@openbsd.org <djm@openbsd.org> | 2023-10-12 04:18:18 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2023-10-12 04:19:41 +0200 |
commit | 98fc34df837f3a3b79d2a111b96fe8a39adcab55 (patch) | |
tree | e9e0eeac309e41715fcea9a62348c807ab1d30ef /readconf.h | |
parent | upstream: release GSS OIDs only at end of authentication; bz2982, (diff) | |
download | openssh-98fc34df837f3a3b79d2a111b96fe8a39adcab55.tar.xz openssh-98fc34df837f3a3b79d2a111b96fe8a39adcab55.zip |
upstream: add %j token that expands to the configured ProxyJump
hostname (or the empty string if this option is not being used). bz3610, ok
dtucker
OpenBSD-Commit-ID: ce9983f7efe6a178db90dc5c1698df025df5e339
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.h b/readconf.h index 702b027de..ff7180cd0 100644 --- a/readconf.h +++ b/readconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.153 2023/10/11 22:42:26 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.154 2023/10/12 02:18:18 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -233,7 +233,7 @@ typedef struct { const char *kex_default_pk_alg(void); char *ssh_connection_hash(const char *thishost, const char *host, - const char *portstr, const char *user); + const char *portstr, const char *user, const char *jump_host); void initialize_options(Options *); int fill_default_options(Options *); void fill_default_options_for_canonicalization(Options *); |