diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-26 21:47:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-09-26 21:47:57 +0000 |
commit | 794651a7dfcbc8946718ce8ca644f2cee840c3e2 (patch) | |
tree | 9a9d45ee10d529b664f021b180f112a623823073 /usr.bin/ssh/ssh.h | |
parent | 78e9a0dcdc5aa849d4ae0c65cff2428cd4d6a7e3 (diff) |
build ssh components using our build model
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 3aa6d8804f4..b2046f91574 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.1 1999/09/26 20:53:38 deraadt Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.2 1999/09/26 21:47:55 deraadt Exp $"); */ #ifndef SSH_H #define SSH_H @@ -53,6 +53,9 @@ Generic header file for ssh. port if present. */ #define SSH_SERVICE_NAME "ssh" +#define ETCDIR "/etc" +#define PIDDIR "/var/run" + /* System-wide file containing host keys of known hosts. This file should be world-readable. */ #define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts" @@ -63,6 +66,12 @@ and HOST_CONFIG_FILE /etc/ssh_config are all defined in Makefile.in. Of these, ssh_host_key should be readable only by root, whereas ssh_config should be world-readable. */ +#define HOST_KEY_FILE "/etc/ssh_host_key" +#define SERVER_CONFIG_FILE "/etc/sshd_config" +#define HOST_CONFIG_FILE "/etc/ssh_config" + +#define SSH_PROGRAM "/usr/bin/ssh" + /* Random seed file for the daemon. This file should be readable only by root. */ #define SSH_DAEMON_SEED_FILE ETCDIR "/ssh_random_seed" |