[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.61 and 1.62

version 1.61, 2004/04/18 23:10:26 version 1.62, 2004/04/27 09:46:37
Line 27 
Line 27 
 }       Forward;  }       Forward;
 /* Data structure for representing option data. */  /* Data structure for representing option data. */
   
   #define MAX_SEND_ENV    256
   
 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. */
Line 103 
Line 105 
         int     identities_only;          int     identities_only;
         int     server_alive_interval;          int     server_alive_interval;
         int     server_alive_count_max;          int     server_alive_count_max;
   
           int     num_send_env;
           char   *send_env[MAX_SEND_ENV];
 }       Options;  }       Options;
   
   

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62