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)
downloadopenssh-git-46bc075474211c711b102f6278783bb68d7530a8.tar.gz
- 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 9d70fee6..66805594 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.h,v 1.61 2004/04/18 23:10:26 djm Exp $ */
+/* $OpenBSD: readconf.h,v 1.62 2004/04/27 09:46:37 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -27,6 +27,8 @@ typedef struct {
} Forward;
/* Data structure for representing option data. */
+#define MAX_SEND_ENV 256
+
typedef struct {
int forward_agent; /* Forward authentication agent. */
int forward_x11; /* Forward X11 display. */
@@ -103,6 +105,9 @@ typedef struct {
int identities_only;
int server_alive_interval;
int server_alive_count_max;
+
+ int num_send_env;
+ char *send_env[MAX_SEND_ENV];
} Options;