summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:21:14 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:21:14 +0000
commitec95ed9b4ca014643a0272f6fa5b24ac9c70d263 (patch)
tree91a5c1b319337e52f7cc80742eda081f6dbfd6c2 /servconf.h
parentb4c774cf8878d9100fde92ff4e938671c3b0301b (diff)
- dugsong@cvs.openbsd.org 2001/06/26 16:15:25
[auth1.c auth.h auth-krb4.c auth-passwd.c readconf.c readconf.h servconf.c servconf.h session.c sshconnect1.c sshd.c] Kerberos v5 support for SSH1, mostly from Assar Westerlund <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/servconf.h b/servconf.h
index a71b7c135..1b0220283 100644
--- a/servconf.h
+++ b/servconf.h
@@ -11,7 +11,7 @@
11 * called by a name other than "ssh" or "Secure Shell". 11 * called by a name other than "ssh" or "Secure Shell".
12 */ 12 */
13 13
14/* RCSID("$OpenBSD: servconf.h,v 1.45 2001/06/26 06:33:00 itojun Exp $"); */ 14/* RCSID("$OpenBSD: servconf.h,v 1.46 2001/06/26 16:15:24 dugsong Exp $"); */
15 15
16#ifndef SERVCONF_H 16#ifndef SERVCONF_H
17#define SERVCONF_H 17#define SERVCONF_H
@@ -73,7 +73,7 @@ typedef struct {
73 int hostbased_uses_name_from_packet_only; /* experimental */ 73 int hostbased_uses_name_from_packet_only; /* experimental */
74 int rsa_authentication; /* If true, permit RSA authentication. */ 74 int rsa_authentication; /* If true, permit RSA authentication. */
75 int pubkey_authentication; /* If true, permit ssh2 pubkey authentication. */ 75 int pubkey_authentication; /* If true, permit ssh2 pubkey authentication. */
76#ifdef KRB4 76#if defined(KRB4) || defined(KRB5)
77 int kerberos_authentication; /* If true, permit Kerberos 77 int kerberos_authentication; /* If true, permit Kerberos
78 * authentication. */ 78 * authentication. */
79 int kerberos_or_local_passwd; /* If true, permit kerberos 79 int kerberos_or_local_passwd; /* If true, permit kerberos
@@ -84,9 +84,11 @@ typedef struct {
84 int kerberos_ticket_cleanup; /* If true, destroy ticket 84 int kerberos_ticket_cleanup; /* If true, destroy ticket
85 * file on logout. */ 85 * file on logout. */
86#endif 86#endif
87#ifdef AFS 87#if defined(AFS) || defined(KRB5)
88 int kerberos_tgt_passing; /* If true, permit Kerberos tgt 88 int kerberos_tgt_passing; /* If true, permit Kerberos TGT
89 * passing. */ 89 * passing. */
90#endif
91#ifdef AFS
90 int afs_token_passing; /* If true, permit AFS token passing. */ 92 int afs_token_passing; /* If true, permit AFS token passing. */
91#endif 93#endif
92 int password_authentication; /* If true, permit password 94 int password_authentication; /* If true, permit password