summaryrefslogtreecommitdiff
path: root/pathnames.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-12 23:34:34 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-12 23:34:34 +0000
commit5eabda303aa26c77e4c383230db9ce9d9175e580 (patch)
treea084d793ff9789b41920bb259c7ff309d21eba24 /pathnames.h
parent0998872972ec9a059204344cf0bec64123b3e28c (diff)
- 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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/pathnames.h b/pathnames.h
index 75415f3a5..2f09820bd 100644
--- a/pathnames.h
+++ b/pathnames.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: pathnames.h,v 1.4 2001/02/08 22:28:07 stevesk Exp $ */ 1/* $OpenBSD: pathnames.h,v 1.5 2001/04/12 19:15:24 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -31,10 +31,11 @@
31 * Of these, ssh_host_key must be readable only by root, whereas ssh_config 31 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
32 * should be world-readable. 32 * should be world-readable.
33 */ 33 */
34#define _PATH_HOST_KEY_FILE ETCDIR "/ssh_host_key"
35#define _PATH_SERVER_CONFIG_FILE ETCDIR "/sshd_config" 34#define _PATH_SERVER_CONFIG_FILE ETCDIR "/sshd_config"
36#define _PATH_HOST_CONFIG_FILE ETCDIR "/ssh_config" 35#define _PATH_HOST_CONFIG_FILE ETCDIR "/ssh_config"
36#define _PATH_HOST_KEY_FILE ETCDIR "/ssh_host_key"
37#define _PATH_HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key" 37#define _PATH_HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key"
38#define _PATH_HOST_RSA_KEY_FILE ETCDIR "/ssh_host_rsa_key"
38#define _PATH_DH_PRIMES ETCDIR "/primes" 39#define _PATH_DH_PRIMES ETCDIR "/primes"
39 40
40#ifndef _PATH_SSH_PROGRAM 41#ifndef _PATH_SSH_PROGRAM