diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-05 21:55:45 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-06-05 21:55:45 +0000 |
commit | 9dbda282d093d20e3a0d6f696dc54d2f5f58552b (patch) | |
tree | 4c6a9e6e13e7e7ab7813adc8182b7c2ea51bfab8 /usr.bin/ssh/authfd.h | |
parent | 03fac7a82759204a9949f603d88a89385ee8a8fb (diff) |
ssh-add -t life, Set lifetime (in seconds) when adding identities; ok provos@
Diffstat (limited to 'usr.bin/ssh/authfd.h')
-rw-r--r-- | usr.bin/ssh/authfd.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfd.h b/usr.bin/ssh/authfd.h index b075cfa1019..263e4b97d68 100644 --- a/usr.bin/ssh/authfd.h +++ b/usr.bin/ssh/authfd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.h,v 1.25 2002/06/05 19:57:12 markus Exp $ */ +/* $OpenBSD: authfd.h,v 1.26 2002/06/05 21:55:44 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -46,6 +46,10 @@ #define SSH_AGENTC_LOCK 22 #define SSH_AGENTC_UNLOCK 23 +/* set key lifetime */ +#define SSH_AGENTC_LIFETIME_IDENTITY1 24 +#define SSH_AGENTC_LIFETIME_IDENTITY 25 + /* extended failure messages */ #define SSH2_AGENT_FAILURE 30 @@ -69,6 +73,7 @@ int ssh_get_num_identities(AuthenticationConnection *, int); Key *ssh_get_first_identity(AuthenticationConnection *, char **, int); Key *ssh_get_next_identity(AuthenticationConnection *, char **, int); int ssh_add_identity(AuthenticationConnection *, Key *, const char *); +int ssh_lifetime_identity(AuthenticationConnection *, Key *, u_int); int ssh_remove_identity(AuthenticationConnection *, Key *); int ssh_remove_all_identities(AuthenticationConnection *, int); int ssh_lock_agent(AuthenticationConnection *, int, const char *); |