diff options
author | mouring <mouring> | 2001-04-12 23:34:34 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-04-12 23:34:34 +0000 |
commit | 8c6de24bcb0cf8fdc1c0d6a2e0e7142b741316a1 (patch) | |
tree | f617160150d91821606a4a81e1c829a9b39a215f /pathnames.h | |
parent | c88473f280395f14d0b3f570790ff66a4daa2bc7 (diff) | |
download | openssh-8c6de24bcb0cf8fdc1c0d6a2e0e7142b741316a1.tar.gz |
- markus@cvs.openbsd.org 2001/04/12 19:15:26
[auth-rhosts.c auth.h auth2.c buffer.c canohost.c canohost.h
compat.c compat.h hostfile.c pathnames.h readconf.c readconf.h
servconf.c servconf.h ssh.c sshconnect.c sshconnect.h sshconnect1.c
sshconnect2.c sshd_config]
implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
similar to RhostRSAAuthentication unless you enable (the experimental)
HostbasedUsesNameFromPacketOnly option. please test. :)
Diffstat (limited to 'pathnames.h')
-rw-r--r-- | pathnames.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pathnames.h b/pathnames.h index 75415f3a..2f09820b 100644 --- a/pathnames.h +++ b/pathnames.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pathnames.h,v 1.4 2001/02/08 22:28:07 stevesk Exp $ */ +/* $OpenBSD: pathnames.h,v 1.5 2001/04/12 19:15:24 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -31,10 +31,11 @@ * Of these, ssh_host_key must be readable only by root, whereas ssh_config * should be world-readable. */ -#define _PATH_HOST_KEY_FILE ETCDIR "/ssh_host_key" #define _PATH_SERVER_CONFIG_FILE ETCDIR "/sshd_config" #define _PATH_HOST_CONFIG_FILE ETCDIR "/ssh_config" +#define _PATH_HOST_KEY_FILE ETCDIR "/ssh_host_key" #define _PATH_HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key" +#define _PATH_HOST_RSA_KEY_FILE ETCDIR "/ssh_host_rsa_key" #define _PATH_DH_PRIMES ETCDIR "/primes" #ifndef _PATH_SSH_PROGRAM |