[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.34 and 1.35

version 1.34, 2001/06/26 16:15:24 version 1.35, 2001/06/26 17:27:24
Line 102 
Line 102 
 }       Options;  }       Options;
   
   
 /*  void     initialize_options(Options *);
  * Initializes options to special values that indicate that they have not yet  void     fill_default_options(Options *);
  * been set.  Read_config_file will only set options with this value. Options  void     read_config_file(const char *, const char *, Options *);
  * are processed in the following order: command line, user config file,  
  * system config file.  Last, fill_default_options is called.  
  */  
 void    initialize_options(Options *);  
   
 /*  
  * Called after processing other sources of option data, this fills those  
  * options for which no value has been specified with their default values.  
  */  
 void    fill_default_options(Options *);  
   
 /*  
  * Processes a single option line as used in the configuration files. This  
  * only sets those values that have not already been set. Returns 0 for legal  
  * options  
  */  
 int  int
 process_config_line(Options *, const char *, char *, const char *, int, int *);  process_config_line(Options *, const char *, char *, const char *, int, int *);
   
 /*  void     add_local_forward(Options *, u_short, const char *, u_short);
  * Reads the config file and modifies the options accordingly.  Options  void     add_remote_forward(Options *, u_short, const char *, u_short);
  * should already be initialized before this call.  This never returns if  
  * there is an error.  If the file does not exist, this returns immediately.  
  */  
 void  
 read_config_file(const char *, const char *, Options *);  
   
 /*  
  * Adds a local TCP/IP port forward to options.  Never returns if there is an  
  * error.  
  */  
 void  
 add_local_forward(Options *, u_short, const char *, u_short);  
   
 /*  
  * Adds a remote TCP/IP port forward to options.  Never returns if there is  
  * an error.  
  */  
 void  
 add_remote_forward(Options *, u_short, const char *, u_short);  
   
 #endif                          /* READCONF_H */  #endif                          /* READCONF_H */

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35