summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2012-04-22 11:24:43 +1000
committerDamien Miller <djm@mindrot.org>2012-04-22 11:24:43 +1000
commit23528816dc10165b3bc009f2ab5fdf1653db418c (patch)
treee5116ca83a35c9ede7bc5039ceffe352e0d05588 /servconf.h
parent839f743464ae1cdd7d75b2e759738a9e8d00d609 (diff)
- djm@cvs.openbsd.org 2012/04/12 02:42:32
[servconf.c servconf.h sshd.c sshd_config sshd_config.5] VersionAddendum option to allow server operators to append some arbitrary text to the SSH-... banner; ok deraadt@ "don't care" markus@
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h
index 89f38e20f..66ba387dd 100644
--- a/servconf.h
+++ b/servconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: servconf.h,v 1.99 2011/06/22 21:57:01 djm Exp $ */ 1/* $OpenBSD: servconf.h,v 1.100 2012/04/12 02:42:32 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -166,6 +166,8 @@ typedef struct {
166 char *revoked_keys_file; 166 char *revoked_keys_file;
167 char *trusted_user_ca_keys; 167 char *trusted_user_ca_keys;
168 char *authorized_principals_file; 168 char *authorized_principals_file;
169
170 char *version_addendum; /* Appended to SSH banner */
169} ServerOptions; 171} ServerOptions;
170 172
171/* 173/*