summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/servconf.h b/servconf.h
index a5010093d..107438c05 100644
--- a/servconf.h
+++ b/servconf.h
@@ -13,7 +13,7 @@
13 * 13 *
14 */ 14 */
15 15
16/* RCSID("$Id: servconf.h,v 1.10 2000/05/01 23:23:46 damien Exp $"); */ 16/* RCSID("$Id: servconf.h,v 1.11 2000/05/07 02:03:18 damien Exp $"); */
17 17
18#ifndef SERVCONF_H 18#ifndef SERVCONF_H
19#define SERVCONF_H 19#define SERVCONF_H
@@ -32,7 +32,7 @@ typedef struct {
32 char *listen_addr; /* Address on which the server listens. */ 32 char *listen_addr; /* Address on which the server listens. */
33 struct addrinfo *listen_addrs; /* Addresses on which the server listens. */ 33 struct addrinfo *listen_addrs; /* Addresses on which the server listens. */
34 char *host_key_file; /* File containing host key. */ 34 char *host_key_file; /* File containing host key. */
35 char *dsa_key_file; /* File containing dsa host key. */ 35 char *host_dsa_key_file; /* File containing dsa host key. */
36 char *pid_file; /* Where to put our pid */ 36 char *pid_file; /* Where to put our pid */
37 int server_key_bits;/* Size of the server key. */ 37 int server_key_bits;/* Size of the server key. */
38 int login_grace_time; /* Disconnect if no auth in this time 38 int login_grace_time; /* Disconnect if no auth in this time
@@ -51,6 +51,7 @@ typedef struct {
51 int keepalives; /* If true, set SO_KEEPALIVE. */ 51 int keepalives; /* If true, set SO_KEEPALIVE. */
52 char *ciphers; /* Ciphers in order of preference. */ 52 char *ciphers; /* Ciphers in order of preference. */
53 int protocol; /* Protocol in order of preference. */ 53 int protocol; /* Protocol in order of preference. */
54 int gateway_ports; /* If true, allow remote connects to forwarded ports. */
54 SyslogFacility log_facility; /* Facility for system logging. */ 55 SyslogFacility log_facility; /* Facility for system logging. */
55 LogLevel log_level; /* Level for system logging. */ 56 LogLevel log_level; /* Level for system logging. */
56 int rhosts_authentication; /* If true, permit rhosts 57 int rhosts_authentication; /* If true, permit rhosts
@@ -58,6 +59,7 @@ typedef struct {
58 int rhosts_rsa_authentication; /* If true, permit rhosts RSA 59 int rhosts_rsa_authentication; /* If true, permit rhosts RSA
59 * authentication. */ 60 * authentication. */
60 int rsa_authentication; /* If true, permit RSA authentication. */ 61 int rsa_authentication; /* If true, permit RSA authentication. */
62 int dsa_authentication; /* If true, permit DSA authentication. */
61#ifdef KRB4 63#ifdef KRB4
62 int kerberos_authentication; /* If true, permit Kerberos 64 int kerberos_authentication; /* If true, permit Kerberos
63 * authentication. */ 65 * authentication. */