summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-01-30 11:43:14 +0000
committerDamien Miller <djm@mindrot.org>2015-01-30 22:47:01 +1100
commit46347ed5968f582661e8a70a45f448e0179ca0ab (patch)
tree73d7bdde30c7833671bec134d737efb09075bd55 /readconf.h
parent802660cb70453fa4d230cb0233bc1bbdf8328de1 (diff)
upstream commit
Add a ssh_config HostbasedKeyType option to control which host public key types are tried during hostbased authentication. This may be used to prevent too many keys being sent to the server, and blowing past its MaxAuthTries limit. bz#2211 based on patch by Iain Morgan; ok markus@
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index 7a8ae17c0..701b9c696 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.107 2015/01/26 03:04:45 djm Exp $ */ 1/* $OpenBSD: readconf.h,v 1.108 2015/01/30 11:43:14 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -150,6 +150,8 @@ typedef struct {
150 150
151 int update_hostkeys; 151 int update_hostkeys;
152 152
153 char *hostbased_key_types;
154
153 char *ignored_unknown; /* Pattern list of unknown tokens to ignore */ 155 char *ignored_unknown; /* Pattern list of unknown tokens to ignore */
154} Options; 156} Options;
155 157