[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.89 and 1.90

version 1.89, 2011/05/06 21:34:32 version 1.90, 2011/05/24 07:15:47
Line 27 
Line 27 
 }       Forward;  }       Forward;
 /* Data structure for representing option data. */  /* Data structure for representing option data. */
   
 #define MAX_SEND_ENV    256  #define MAX_SEND_ENV            256
   #define SSH_MAX_HOSTS_FILES     256
   
 typedef struct {  typedef struct {
         int     forward_agent;  /* Forward authentication agent. */          int     forward_agent;  /* Forward authentication agent. */
Line 83 
Line 84 
         char   *user;           /* User to log in as. */          char   *user;           /* User to log in as. */
         int     escape_char;    /* Escape character; -2 = none */          int     escape_char;    /* Escape character; -2 = none */
   
         char   *system_hostfile;/* Path for /etc/ssh/ssh_known_hosts. */          u_int   num_system_hostfiles;   /* Paths for /etc/ssh/ssh_known_hosts */
         char   *user_hostfile;  /* Path for $HOME/.ssh/known_hosts. */          char   *system_hostfiles[SSH_MAX_HOSTS_FILES];
         char   *system_hostfile2;          u_int   num_user_hostfiles;     /* Path for $HOME/.ssh/known_hosts */
         char   *user_hostfile2;          char   *user_hostfiles[SSH_MAX_HOSTS_FILES];
         char   *preferred_authentications;          char   *preferred_authentications;
         char   *bind_address;   /* local socket address for connection to sshd */          char   *bind_address;   /* local socket address for connection to sshd */
         char   *pkcs11_provider; /* PKCS#11 provider */          char   *pkcs11_provider; /* PKCS#11 provider */

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90