]> andersk Git - openssh.git/blobdiff - readconf.h
- (tim) [regress/README.regress] Document ssh-rand-helper issue. ok bal
[openssh.git] / readconf.h
index 991e20091e57966fe4214a714618333c783dc973..93d833cee3dca68b753f5254d8793e80b85664f7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: readconf.h,v 1.49 2003/05/15 01:48:10 jakob Exp $     */
+/*     $OpenBSD: readconf.h,v 1.60 2004/03/05 10:53:58 markus Exp $    */
 
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -30,10 +30,10 @@ typedef struct {
 typedef struct {
        int     forward_agent;  /* Forward authentication agent. */
        int     forward_x11;    /* Forward X11 display. */
+       int     forward_x11_trusted;    /* Trust Forward X11 display. */
        char   *xauth_location; /* Location for xauth program */
        int     gateway_ports;  /* Allow remote connects to forwarded ports. */
        int     use_privileged_port;    /* Don't use privileged port if false. */
-       int     rhosts_authentication;  /* Try rhosts authentication. */
        int     rhosts_rsa_authentication;      /* Try rhosts with RSA
                                                 * authentication. */
        int     rsa_authentication;     /* Try RSA authentication. */
@@ -41,9 +41,8 @@ typedef struct {
        int     hostbased_authentication;       /* ssh2's rhosts_rsa */
        int     challenge_response_authentication;
                                        /* Try S/Key or TIS, authentication. */
-       int     kerberos_authentication;        /* Try Kerberos authentication. */
-       int     kerberos_tgt_passing;   /* Try Kerberos TGT passing. */
-       int     afs_token_passing;      /* Try AFS token passing. */
+       int     gss_authentication;     /* Try GSS authentication */
+       int     gss_deleg_creds;        /* Delegate GSS credentials */
        int     password_authentication;        /* Try password
                                                 * authentication. */
        int     kbd_interactive_authentication; /* Try keyboard-interactive auth. */
@@ -54,12 +53,15 @@ typedef struct {
        int     compression;    /* Compress packets in both directions. */
        int     compression_level;      /* Compression level 1 (fast) to 9
                                         * (best). */
-       int     keepalives;     /* Set SO_KEEPALIVE. */
+       int     tcp_keep_alive; /* Set SO_KEEPALIVE. */
        LogLevel log_level;     /* Level for logging. */
 
        int     port;           /* Port to connect. */
+       int     address_family;
        int     connection_attempts;    /* Max attempts (seconds) before
                                         * giving up */
+       int     connection_timeout;     /* Max time (seconds) before
+                                        * aborting connection attempt */
        int     number_of_password_prompts;     /* Max number of password
                                                 * prompts. */
        int     cipher;         /* Cipher to use. */
@@ -98,6 +100,9 @@ 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;
 }       Options;
 
 
This page took 0.036233 seconds and 4 git commands to generate.