diff options
author | 1999-09-26 21:47:52 +0000 | |
---|---|---|
committer | 1999-09-26 21:47:52 +0000 | |
commit | ceff9734ccb2224aada73f6942a361fdf39c02d0 (patch) | |
tree | dd2cb0a1ed933c92537ebc1a461876aacbfba770 /usr.bin/ssh/ssh.h | |
parent | all the idea code goes away (diff) | |
download | wireguard-openbsd-ceff9734ccb2224aada73f6942a361fdf39c02d0.tar.xz wireguard-openbsd-ceff9734ccb2224aada73f6942a361fdf39c02d0.zip |
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" |