summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/readconf.h b/readconf.h
index 9d70fee67..668055943 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.61 2004/04/18 23:10:26 djm Exp $ */ 1/* $OpenBSD: readconf.h,v 1.62 2004/04/27 09:46:37 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -27,6 +27,8 @@ typedef struct {
27} Forward; 27} Forward;
28/* Data structure for representing option data. */ 28/* Data structure for representing option data. */
29 29
30#define MAX_SEND_ENV 256
31
30typedef struct { 32typedef struct {
31 int forward_agent; /* Forward authentication agent. */ 33 int forward_agent; /* Forward authentication agent. */
32 int forward_x11; /* Forward X11 display. */ 34 int forward_x11; /* Forward X11 display. */
@@ -103,6 +105,9 @@ typedef struct {
103 int identities_only; 105 int identities_only;
104 int server_alive_interval; 106 int server_alive_interval;
105 int server_alive_count_max; 107 int server_alive_count_max;
108
109 int num_send_env;
110 char *send_env[MAX_SEND_ENV];
106} Options; 111} Options;
107 112
108 113