summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-06-26 09:50:30 +1000
committerDamien Miller <djm@mindrot.org>2010-06-26 09:50:30 +1000
commit232cfb1b1d0dccee68b1d433e0b4e1aa74919fc9 (patch)
tree80907fc629d104e69a7886cff390cabfba077e7b /readconf.h
parentd834d3583427981a395f8fc53346f9473b2e902c (diff)
- djm@cvs.openbsd.org 2010/06/25 07:14:46
[channels.c mux.c readconf.c readconf.h ssh.h] bz#1327: remove hardcoded limit of 100 permitopen clauses and port forwards per direction; ok markus@ stevesk@
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/readconf.h b/readconf.h
index 4fb29e2fa..3c8eae9d2 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.83 2010/05/16 12:55:51 markus Exp $ */ 1/* $OpenBSD: readconf.h,v 1.84 2010/06/25 07:14:46 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -94,11 +94,11 @@ typedef struct {
94 94
95 /* Local TCP/IP forward requests. */ 95 /* Local TCP/IP forward requests. */
96 int num_local_forwards; 96 int num_local_forwards;
97 Forward local_forwards[SSH_MAX_FORWARDS_PER_DIRECTION]; 97 Forward *local_forwards;
98 98
99 /* Remote TCP/IP forward requests. */ 99 /* Remote TCP/IP forward requests. */
100 int num_remote_forwards; 100 int num_remote_forwards;
101 Forward remote_forwards[SSH_MAX_FORWARDS_PER_DIRECTION]; 101 Forward *remote_forwards;
102 int clear_forwardings; 102 int clear_forwardings;
103 103
104 int enable_ssh_keysign; 104 int enable_ssh_keysign;