diff options
author | 1999-10-28 08:43:10 +0000 | |
---|---|---|
committer | 1999-10-28 08:43:10 +0000 | |
commit | 7ed20af2be2cbdd1b5d233ab6306c2a8d9f72096 (patch) | |
tree | f0fd17bdc60d22b7e87261bc7f1b22290b643ae9 /usr.bin/ssh/ssh.h | |
parent | namedb moved from /etc to /var (diff) | |
download | wireguard-openbsd-7ed20af2be2cbdd1b5d233ab6306c2a8d9f72096.tar.xz wireguard-openbsd-7ed20af2be2cbdd1b5d233ab6306c2a8d9f72096.zip |
from niklas: Add -c -s and -k support, Create socket early to avoid race,
Don't let child access std{in,out,err}
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 099ad20db79..e30f74d2fc6 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -13,7 +13,7 @@ Generic header file for ssh. */ -/* RCSID("$Id: ssh.h,v 1.14 1999/10/25 20:41:55 markus Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.15 1999/10/28 08:43:10 markus Exp $"); */ #ifndef SSH_H #define SSH_H @@ -120,6 +120,10 @@ only by root, whereas ssh_config should be world-readable. */ authentication socket. */ #define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTH_SOCK" +/* Name of the environment variable containing the pathname of the + authentication socket. */ +#define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID" + /* Force host key length and server key length to differ by at least this many bits. This is to make double encryption with rsaref work. */ #define SSH_KEY_BITS_RESERVED 128 |