summaryrefslogtreecommitdiff
path: root/readconf.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2005-01-04 13:07:27 +0000
committerColin Watson <cjwatson@debian.org>2005-01-04 13:07:27 +0000
commitfd0f611b70a83d80fe8793af785542ee5541b7cd (patch)
treebededd22bb7eeec52e20083237ab7e4113445a16 /readconf.h
parentc44fe9a5b9d3db96a7249b04d915f17e4a3a3b04 (diff)
parentebd2ce335af5861020c79fddb1ae35c03bf036cf (diff)
Merge 3.9p1 to the trunk.
Diffstat (limited to 'readconf.h')
-rw-r--r--readconf.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/readconf.h b/readconf.h
index 97b6c2be4..2f4908f4e 100644
--- a/readconf.h
+++ b/readconf.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.h,v 1.60 2004/03/05 10:53:58 markus Exp $ */ 1/* $OpenBSD: readconf.h,v 1.64 2004/07/11 17:48:47 deraadt 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. */
@@ -102,14 +104,20 @@ typedef struct {
102 int rekey_limit; 104 int rekey_limit;
103 int no_host_authentication_for_localhost; 105 int no_host_authentication_for_localhost;
104 int identities_only; 106 int identities_only;
105 int server_alive_interval; 107 int server_alive_interval;
106 int server_alive_count_max; 108 int server_alive_count_max;
109
110 int num_send_env;
111 char *send_env[MAX_SEND_ENV];
112
113 char *control_path;
114 int control_master;
107} Options; 115} Options;
108 116
109 117
110void initialize_options(Options *); 118void initialize_options(Options *);
111void fill_default_options(Options *); 119void fill_default_options(Options *);
112int read_config_file(const char *, const char *, Options *); 120int read_config_file(const char *, const char *, Options *, int);
113 121
114int 122int
115process_config_line(Options *, const char *, char *, const char *, int, int *); 123process_config_line(Options *, const char *, char *, const char *, int, int *);