=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/readconf.h,v retrieving revision 1.43.2.2 retrieving revision 1.44 diff -u -r1.43.2.2 -r1.44 --- src/usr.bin/ssh/readconf.h 2003/09/16 21:20:26 1.43.2.2 +++ src/usr.bin/ssh/readconf.h 2002/11/07 22:08:07 1.44 @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.43.2.2 2003/09/16 21:20:26 brad Exp $ */ +/* $OpenBSD: readconf.h,v 1.44 2002/11/07 22:08:07 markus Exp $ */ /* * Author: Tatu Ylonen @@ -33,6 +33,7 @@ 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. */ @@ -40,8 +41,15 @@ int hostbased_authentication; /* ssh2's rhosts_rsa */ int challenge_response_authentication; /* Try S/Key or TIS, authentication. */ - int gss_authentication; /* Try GSS authentication */ - int gss_deleg_creds; /* Delegate GSS credentials */ +#if defined(KRB4) || defined(KRB5) + int kerberos_authentication; /* Try Kerberos authentication. */ +#endif +#if defined(AFS) || defined(KRB5) + int kerberos_tgt_passing; /* Try Kerberos TGT passing. */ +#endif +#ifdef AFS + int afs_token_passing; /* Try AFS token passing. */ +#endif int password_authentication; /* Try password * authentication. */ int kbd_interactive_authentication; /* Try keyboard-interactive auth. */ @@ -56,11 +64,8 @@ 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. */ @@ -81,7 +86,6 @@ char *preferred_authentications; char *bind_address; /* local socket address for connection to sshd */ char *smartcard_device; /* Smartcard reader device */ - int verify_host_key_dns; /* Verify host key using DNS */ int num_identity_files; /* Number of files for RSA/DSA identities. */ char *identity_files[SSH_MAX_IDENTITY_FILES]; @@ -97,7 +101,6 @@ int clear_forwardings; int enable_ssh_keysign; - int rekey_limit; int no_host_authentication_for_localhost; } Options;