]> andersk Git - openssh.git/blobdiff - readconf.h
- (tim) [contrib/cygwin/README] add minires-devel requirement. Patch from
[openssh.git] / readconf.h
index f2a859fbe84582dc211833edbae08348aeaddfa4..5e504bece7ffc75d9b309dc56693ad0137a0f3ce 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: readconf.h,v 1.58 2003/12/09 21:53:36 markus Exp $    */
+/*     $OpenBSD: readconf.h,v 1.63 2004/06/13 15:03:02 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. */
@@ -100,12 +102,21 @@ typedef struct {
        int     enable_ssh_keysign;
        int     rekey_limit;
        int     no_host_authentication_for_localhost;
+       int     identities_only;
+       int     server_alive_interval; 
+       int     server_alive_count_max;
+
+       int     num_send_env;
+       char   *send_env[MAX_SEND_ENV];
+
+       char    *control_path;
+       int     control_master;
 }       Options;
 
 
 void     initialize_options(Options *);
 void     fill_default_options(Options *);
-int     read_config_file(const char *, const char *, Options *);
+int     read_config_file(const char *, const char *, Options *, int);
 
 int
 process_config_line(Options *, const char *, char *, const char *, int, int *);
This page took 0.036448 seconds and 4 git commands to generate.