[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.5.2.6 and 1.6

version 1.5.2.6, 2002/03/08 17:04:41 version 1.6, 2000/12/19 23:17:55
Line 1 
Line 1 
 /*      $OpenBSD$       */  
   
 /*  /*
  * 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
Line 13 
Line 11 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
   /* $OpenBSD$ */
   
 #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 30 
Line 23 
 extern char *forced_command;  extern char *forced_command;
 extern struct envstring *custom_environment;  extern struct envstring *custom_environment;
   
 int     auth_parse_options(struct passwd *, char *, char *, u_long);  /* return 1 if access is granted, 0 if not. side effect: sets key option flags */
   int     auth_parse_options(struct passwd *pw, char *options, u_long linenum);
   /* reset options flags */
 void    auth_clear_options(void);  void    auth_clear_options(void);
   
 #endif  #endif

Legend:
Removed from v.1.5.2.6  
changed lines
  Added in v.1.6