diff options
author | djm@openbsd.org <djm@openbsd.org> | 2020-08-11 09:49:57 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-08-27 11:27:01 +1000 |
commit | d0a195c89e26766d3eb8f3e4e2a00ebc98b57795 (patch) | |
tree | 4479d2c36da47752ca6b09bfc8dc4a0e6d2af97c /readconf.h | |
parent | e9c2002891a7b8e66f4140557a982978f372e5a3 (diff) |
upstream: let ssh_config(5)'s AddKeysToAgent keyword accept a time
limit for keys in addition to its current flag options. Time-limited keys
will automatically be removed from ssh-agent after their expiry time has
passed; ok markus@
OpenBSD-Commit-ID: 792e71cacbbc25faab5424cf80bee4a006119f94
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 e143a1082..d6a15550d 100644 --- a/readconf.h +++ b/readconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.h,v 1.133 2020/04/03 02:27:12 dtucker Exp $ */ | 1 | /* $OpenBSD: readconf.h,v 1.134 2020/08/11 09:49:57 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -97,6 +97,7 @@ typedef struct { | |||
97 | struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES]; | 97 | struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES]; |
98 | 98 | ||
99 | int add_keys_to_agent; | 99 | int add_keys_to_agent; |
100 | int add_keys_to_agent_lifespan; | ||
100 | char *identity_agent; /* Optional path to ssh-agent socket */ | 101 | char *identity_agent; /* Optional path to ssh-agent socket */ |
101 | 102 | ||
102 | /* Local TCP/IP forward requests. */ | 103 | /* Local TCP/IP forward requests. */ |