summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-05-02 22:11:30 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-05-02 22:11:30 +1000
commit46bc075474211c711b102f6278783bb68d7530a8 (patch)
tree5f099d7bdc006926bf393dfc51f7545d0787b33e /readconf.h
parent47abce45b20ba52c0eb7f19240851f45bc1babc2 (diff)
- djm@cvs.openbsd.org 2004/04/27 09:46:37
[readconf.c readconf.h servconf.c servconf.h session.c session.h ssh.c ssh_config.5 sshd_config.5] bz #815: implement ability to pass specified environment variables from the client to the server; ok markus@
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