diff options
author | djm@openbsd.org <djm@openbsd.org> | 2014-12-04 02:24:32 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-12-05 09:29:47 +1100 |
commit | 5e39a49930d885aac9c76af3129332b6e772cd75 (patch) | |
tree | 0d3613d35ba5478ff9f7889cc1912a70ee3b2e32 /readconf.h | |
parent | 74de254bb92c684cf53461da97f52d5ba34ded80 (diff) | |
download | openssh-git-5e39a49930d885aac9c76af3129332b6e772cd75.tar.gz |
upstream commit
add RevokedHostKeys option for the client
Allow textfile or KRL-based revocation of hostkeys.
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.103 2014/10/08 22:20:25 djm Exp $ */ +/* $OpenBSD: readconf.h,v 1.104 2014/12/04 02:24:32 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -144,6 +144,8 @@ typedef struct { int num_permitted_cnames; struct allowed_cname permitted_cnames[MAX_CANON_DOMAINS]; + char *revoked_host_keys; + char *ignored_unknown; /* Pattern list of unknown tokens to ignore */ } Options; |