Deleted Added
full compact
servconf.h (69591) servconf.h (73400)
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Definitions for server configuration data and for the functions reading it.
6 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 */
13
14/* RCSID("$OpenBSD: servconf.h,v 1.30 2000/10/14 12:12:09 markus Exp $"); */
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Definitions for server configuration data and for the functions reading it.
6 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 */
13
14/* RCSID("$OpenBSD: servconf.h,v 1.30 2000/10/14 12:12:09 markus Exp $"); */
15/* $FreeBSD: head/crypto/openssh/servconf.h 69591 2000-12-05 02:55:12Z green $ */
15/* $FreeBSD: head/crypto/openssh/servconf.h 73400 2001-03-04 02:22:04Z assar $ */
16
17#ifndef SERVCONF_H
18#define SERVCONF_H
19
20#define MAX_PORTS 256 /* Max # ports. */
21
22#define MAX_ALLOW_USERS 256 /* Max # users on allow list. */
23#define MAX_DENY_USERS 256 /* Max # users on deny list. */

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

56 SyslogFacility log_facility; /* Facility for system logging. */
57 LogLevel log_level; /* Level for system logging. */
58 int rhosts_authentication; /* If true, permit rhosts
59 * authentication. */
60 int rhosts_rsa_authentication; /* If true, permit rhosts RSA
61 * authentication. */
62 int rsa_authentication; /* If true, permit RSA authentication. */
63 int dsa_authentication; /* If true, permit DSA authentication. */
16
17#ifndef SERVCONF_H
18#define SERVCONF_H
19
20#define MAX_PORTS 256 /* Max # ports. */
21
22#define MAX_ALLOW_USERS 256 /* Max # users on allow list. */
23#define MAX_DENY_USERS 256 /* Max # users on deny list. */

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

56 SyslogFacility log_facility; /* Facility for system logging. */
57 LogLevel log_level; /* Level for system logging. */
58 int rhosts_authentication; /* If true, permit rhosts
59 * authentication. */
60 int rhosts_rsa_authentication; /* If true, permit rhosts RSA
61 * authentication. */
62 int rsa_authentication; /* If true, permit RSA authentication. */
63 int dsa_authentication; /* If true, permit DSA authentication. */
64#if defined(KRB4) || defined(KRB5)
65 int kerberos_authentication; /* If true, permit Kerberos auth. */
66#endif /* KRB4 || KRB5 */
64#ifdef KRB4
67#ifdef KRB4
65 int krb4_authentication; /* If true, permit Kerberos v4
66 * authentication. */
67 int krb4_or_local_passwd; /* If true, permit kerberos v4
68 * and any other password
69 * authentication mechanism,
70 * such as SecurID or
71 * /etc/passwd */
72 int krb4_ticket_cleanup; /* If true, destroy ticket
73 * file on logout. */
74#endif
75#ifdef KRB5
68 int krb4_or_local_passwd; /* If true, permit kerberos v4
69 * and any other password
70 * authentication mechanism,
71 * such as SecurID or
72 * /etc/passwd */
73 int krb4_ticket_cleanup; /* If true, destroy ticket
74 * file on logout. */
75#endif
76#ifdef KRB5
76 int krb5_authentication;
77 int krb5_tgt_passing;
78
79#endif /* KRB5 */
80#ifdef AFS
81 int krb4_tgt_passing; /* If true, permit Kerberos v4 tgt
82 * passing. */
83 int afs_token_passing; /* If true, permit AFS token passing. */
84#endif

--- 51 unchanged lines hidden ---
77 int krb5_tgt_passing;
78
79#endif /* KRB5 */
80#ifdef AFS
81 int krb4_tgt_passing; /* If true, permit Kerberos v4 tgt
82 * passing. */
83 int afs_token_passing; /* If true, permit AFS token passing. */
84#endif

--- 51 unchanged lines hidden ---