summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-11 17:57:39 +1100
committerDamien Miller <djm@mindrot.org>1999-11-11 17:57:39 +1100
commit5ce662a9202240a2f5fa6a9334d58186bdaba50c (patch)
tree9fe37122fa27f070abc3c9c28531877d43673b7f /servconf.h
parentab5e0d0c27e00dca463c67395c2b5941e778836e (diff)
- Merged more OpenBSD CVS changes:
- [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal() + krb-cleanup cleanup - [clientloop.c log-client.c log-server.c ] [readconf.c readconf.h servconf.c servconf.h ] [ssh.1 ssh.c ssh.h sshd.8] add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd, obsoletes QuietMode and FascistLogging in sshd.
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/servconf.h b/servconf.h
index 22c73fd73..584935bad 100644
--- a/servconf.h
+++ b/servconf.h
@@ -13,7 +13,7 @@ Definitions for server configuration data and for the functions reading it.
13 13
14*/ 14*/
15 15
16/* RCSID("$Id: servconf.h,v 1.1 1999/10/27 03:42:45 damien Exp $"); */ 16/* RCSID("$Id: servconf.h,v 1.2 1999/11/11 06:57:40 damien Exp $"); */
17 17
18#ifndef SERVCONF_H 18#ifndef SERVCONF_H
19#define SERVCONF_H 19#define SERVCONF_H
@@ -33,8 +33,6 @@ typedef struct
33 int key_regeneration_time; /* Server key lifetime (seconds). */ 33 int key_regeneration_time; /* Server key lifetime (seconds). */
34 int permit_root_login; /* If true, permit root login. */ 34 int permit_root_login; /* If true, permit root login. */
35 int ignore_rhosts; /* Ignore .rhosts and .shosts. */ 35 int ignore_rhosts; /* Ignore .rhosts and .shosts. */
36 int quiet_mode; /* If true, don't log anything but fatals. */
37 int fascist_logging; /* Perform very verbose logging. */
38 int print_motd; /* If true, print /etc/motd. */ 36 int print_motd; /* If true, print /etc/motd. */
39 int check_mail; /* If true, check for new mail. */ 37 int check_mail; /* If true, check for new mail. */
40 int x11_forwarding; /* If true, permit inet (spoofing) X11 fwd. */ 38 int x11_forwarding; /* If true, permit inet (spoofing) X11 fwd. */
@@ -42,6 +40,7 @@ typedef struct
42 int strict_modes; /* If true, require string home dir modes. */ 40 int strict_modes; /* If true, require string home dir modes. */
43 int keepalives; /* If true, set SO_KEEPALIVE. */ 41 int keepalives; /* If true, set SO_KEEPALIVE. */
44 SyslogFacility log_facility; /* Facility for system logging. */ 42 SyslogFacility log_facility; /* Facility for system logging. */
43 LogLevel log_level; /* Level for system logging. */
45 int rhosts_authentication; /* If true, permit rhosts authentication. */ 44 int rhosts_authentication; /* If true, permit rhosts authentication. */
46 int rhosts_rsa_authentication;/* If true, permit rhosts RSA authentication.*/ 45 int rhosts_rsa_authentication;/* If true, permit rhosts RSA authentication.*/
47 int rsa_authentication; /* If true, permit RSA authentication. */ 46 int rsa_authentication; /* If true, permit RSA authentication. */