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

Diff for /src/usr.bin/ssh/auth-options.h between version 1.1.2.2 and 1.1.2.3

version 1.1.2.2, 2000/11/08 21:30:18 version 1.1.2.3, 2001/03/12 15:44:07
Line 15 
Line 15 
   
 #ifndef AUTH_OPTIONS_H  #ifndef AUTH_OPTIONS_H
 #define AUTH_OPTIONS_H  #define AUTH_OPTIONS_H
   
   /* Linked list of custom environment strings */
   struct envstring {
           struct envstring *next;
           char   *s;
   };
   
 /* Flags that may be set in authorized_keys options. */  /* Flags that may be set in authorized_keys options. */
 extern int no_port_forwarding_flag;  extern int no_port_forwarding_flag;
 extern int no_agent_forwarding_flag;  extern int no_agent_forwarding_flag;
Line 23 
Line 30 
 extern char *forced_command;  extern char *forced_command;
 extern struct envstring *custom_environment;  extern struct envstring *custom_environment;
   
 /* return 1 if access is granted, 0 if not. side effect: sets key option flags */  /*
 int     auth_parse_options(struct passwd *pw, char *options, unsigned long linenum);   * return 1 if access is granted, 0 if not.
    * side effect: sets key option flags
    */
   int
   auth_parse_options(struct passwd *pw, char *options, char *file,
       u_long linenum);
   
 /* reset options flags */  /* reset options flags */
 void    auth_clear_options(void);  void    auth_clear_options(void);
   

Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3