[BACK]Return to readconf.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/readconf.h between version 1.18 and 1.18.2.3

version 1.18, 2000/05/08 17:12:15 version 1.18.2.3, 2000/11/08 21:31:07
Line 1 
Line 1 
 /*  /*
  *  
  * readconf.h  
  *  
  * Author: Tatu Ylonen <ylo@cs.hut.fi>   * Author: Tatu Ylonen <ylo@cs.hut.fi>
  *  
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland   * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
  *                    All rights reserved   *                    All rights reserved
  *  
  * Created: Sat Apr 22 00:25:29 1995 ylo  
  *  
  * Functions for reading the configuration file.   * Functions for reading the configuration file.
  *   *
    * As far as I am concerned, the code I have written for this software
    * can be used freely for any purpose.  Any derived versions of this
    * software must be clearly marked as such, and if the derived work is
    * incompatible with the protocol description in the RFC file, it must be
    * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 /* RCSID("$Id$"); */  /* RCSID("$OpenBSD$"); */
   
 #ifndef READCONF_H  #ifndef READCONF_H
 #define READCONF_H  #define READCONF_H
Line 30 
Line 28 
 typedef struct {  typedef struct {
         int     forward_agent;  /* Forward authentication agent. */          int     forward_agent;  /* Forward authentication agent. */
         int     forward_x11;    /* Forward X11 display. */          int     forward_x11;    /* Forward X11 display. */
           char   *xauth_location; /* Location for xauth program */
         int     gateway_ports;  /* Allow remote connects to forwarded ports. */          int     gateway_ports;  /* Allow remote connects to forwarded ports. */
         int     use_privileged_port;    /* Don't use privileged port if false. */          int     use_privileged_port;    /* Don't use privileged port if false. */
         int     rhosts_authentication;  /* Try rhosts authentication. */          int     rhosts_authentication;  /* Try rhosts authentication. */
Line 48 
Line 47 
 #endif  #endif
         int     password_authentication;        /* Try password          int     password_authentication;        /* Try password
                                                  * authentication. */                                                   * authentication. */
           int     kbd_interactive_authentication; /* Try keyboard-interactive auth. */
           char    *kbd_interactive_devices; /* Keyboard-interactive auth devices. */
         int     fallback_to_rsh;/* Use rsh if cannot connect with ssh. */          int     fallback_to_rsh;/* Use rsh if cannot connect with ssh. */
         int     use_rsh;        /* Always use rsh (don\'t try ssh). */          int     use_rsh;        /* Always use rsh (don\'t try ssh). */
         int     batch_mode;     /* Batch mode: do not ask for passwords. */          int     batch_mode;     /* Batch mode: do not ask for passwords. */

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.18.2.3