summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>1999-10-05 22:18:53 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>1999-10-05 22:18:53 +0000
commit46f29bceff2345d9312d3a3390fb5172c5a56056 (patch)
treec12108bf7fb3ae134f0b845382603b6aa647997b /usr.bin/ssh/ssh.h
parentc3d54929d20422aed41315f0c398d2aa0a9d8f11 (diff)
move auth-sockets to private dir
delete minfd residua
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r--usr.bin/ssh/ssh.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h
index 21b670fb4f6..1586ace8b22 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.7 1999/10/04 20:45:02 markus Exp $"); */
+/* RCSID("$Id: ssh.h,v 1.8 1999/10/05 22:18:52 markus Exp $"); */
#ifndef SSH_H
#define SSH_H
@@ -116,20 +116,6 @@ only by root, whereas ssh_config should be world-readable. */
/* Additionally, the daemon may use ~/.rhosts and /etc/hosts.equiv if
rhosts authentication is enabled. */
-/* Socket for connecting the authentication agent. Normally the connection
- to the authentication agent is passed in a file descriptor; however,
- on some systems, commonly used shells close all open file descriptors.
- To make the agent usable on those systems, configure checks whether
- the shells close all descriptors, and if so, defines AGENT_USES_SOCKET.
- That socket is an unix-domain socket and will be stored with this name
- in the user\'s home directory. The socket must not be accessible by
- anyone but the user him/herself. The number at the end of the name
- is the pid of the agent or the forwarding daemon. Note that this
- socket is stored in /tmp, which is supposedly on the local machine. If
- this were in the user\'s home directory, the daemon (running as root)
- might not be able to create and chown the file to the user\'s uid. */
-#define SSH_AGENT_SOCKET "/tmp/ssh_agent.%d"
-
/* Name of the environment variable containing the pathname of the
authentication socket. */
#define SSH_AUTHSOCKET_ENV_NAME "SSH_AUTHENTICATION_SOCKET"