summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-09-24 06:15:11 +0000
committerDamien Miller <djm@mindrot.org>2015-10-06 12:21:54 +1100
commit4e44a79a07d4b88b6a4e5e8c1bed5f58c841b1b8 (patch)
tree7ef647dabf413a83da2f0c26917a8e0b5e1d2145 /ssh.h
parente3cbb06ade83c72b640a53728d362bbefa0008e2 (diff)
upstream commit
add ssh_config CertificateFile option to explicitly list a certificate; patch from Meghana Bhat on bz#2436; ok markus@ Upstream-ID: 58648ec53c510b41c1f46d8fe293aadc87229ab8
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ssh.h b/ssh.h
index 39c7e18af..80eaeb3ed 100644
--- a/ssh.h
+++ b/ssh.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.h,v 1.81 2015/08/04 05:23:06 djm Exp $ */ 1/* $OpenBSD: ssh.h,v 1.82 2015/09/24 06:15:11 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -19,6 +19,12 @@
19#define SSH_DEFAULT_PORT 22 19#define SSH_DEFAULT_PORT 22
20 20
21/* 21/*
22 * Maximum number of certificate files that can be specified
23 * in configuration files or on the command line.
24 */
25#define SSH_MAX_CERTIFICATE_FILES 100
26
27/*
22 * Maximum number of RSA authentication identity files that can be specified 28 * Maximum number of RSA authentication identity files that can be specified
23 * in configuration files or on the command line. 29 * in configuration files or on the command line.
24 */ 30 */