Deleted Added
full compact
ssh.h (57430) ssh.h (57432)
1/*
2 *
3 * ssh.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Fri Mar 17 17:09:37 1995 ylo
11 *
12 * Generic header file for ssh.
13 *
1/*
2 *
3 * ssh.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Fri Mar 17 17:09:37 1995 ylo
11 *
12 * Generic header file for ssh.
13 *
14 * $FreeBSD: head/crypto/openssh/ssh.h 57432 2000-02-24 15:29:42Z markm $
14 */
15
16/* RCSID("$Id: ssh.h,v 1.33 2000/02/01 22:32:53 d Exp $"); */
17
18#ifndef SSH_H
19#define SSH_H
20
21#include "rsa.h"

--- 34 unchanged lines hidden (view full) ---

56#define PROTOCOL_MINOR 5
57
58/*
59 * Name for the service. The port named by this service overrides the
60 * default port if present.
61 */
62#define SSH_SERVICE_NAME "ssh"
63
15 */
16
17/* RCSID("$Id: ssh.h,v 1.33 2000/02/01 22:32:53 d Exp $"); */
18
19#ifndef SSH_H
20#define SSH_H
21
22#include "rsa.h"

--- 34 unchanged lines hidden (view full) ---

57#define PROTOCOL_MINOR 5
58
59/*
60 * Name for the service. The port named by this service overrides the
61 * default port if present.
62 */
63#define SSH_SERVICE_NAME "ssh"
64
64#define ETCDIR "/etc"
65#define ETCDIR "__PREFIX__/etc"
65#define PIDDIR "/var/run"
66
67/*
68 * System-wide file containing host keys of known hosts. This file should be
69 * world-readable.
70 */
71#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
72
73/*
74 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
75 * should be world-readable.
76 */
77#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
78#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
79#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
80
66#define PIDDIR "/var/run"
67
68/*
69 * System-wide file containing host keys of known hosts. This file should be
70 * world-readable.
71 */
72#define SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts"
73
74/*
75 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
76 * should be world-readable.
77 */
78#define HOST_KEY_FILE ETCDIR "/ssh_host_key"
79#define SERVER_CONFIG_FILE ETCDIR "/sshd_config"
80#define HOST_CONFIG_FILE ETCDIR "/ssh_config"
81
81#define SSH_PROGRAM "/usr/bin/ssh"
82#define SSH_PROGRAM "__PREFIX__/bin/ssh"
82
83/*
84 * The process id of the daemon listening for connections is saved here to
85 * make it easier to kill the correct daemon when necessary.
86 */
87#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
88
89/*

--- 637 unchanged lines hidden ---
83
84/*
85 * The process id of the daemon listening for connections is saved here to
86 * make it easier to kill the correct daemon when necessary.
87 */
88#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"
89
90/*

--- 637 unchanged lines hidden ---