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

Diff for /src/usr.bin/ssh/auth.h between version 1.73 and 1.74

version 1.73, 2013/03/07 19:27:25 version 1.74, 2013/05/19 02:42:42
Line 55 
Line 55 
         struct passwd   *pw;            /* set if 'valid' */          struct passwd   *pw;            /* set if 'valid' */
         char            *style;          char            *style;
         void            *kbdintctxt;          void            *kbdintctxt;
           char            *info;          /* Extra info for next auth_log */
         void            *jpake_ctx;          void            *jpake_ctx;
         auth_session_t  *as;          auth_session_t  *as;
         char            **auth_methods; /* modified from server config */          char            **auth_methods; /* modified from server config */
Line 112 
Line 113 
 int      auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *);  int      auth_rhosts_rsa_key_allowed(struct passwd *, char *, char *, Key *);
 int      hostbased_key_allowed(struct passwd *, const char *, char *, Key *);  int      hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
 int      user_key_allowed(struct passwd *, Key *);  int      user_key_allowed(struct passwd *, Key *);
   void     pubkey_auth_info(Authctxt *, const Key *);
   
 struct stat;  struct stat;
 int      auth_secure_path(const char *, struct stat *, const char *, uid_t,  int      auth_secure_path(const char *, struct stat *, const char *, uid_t,
Line 127 
Line 129 
 void    do_authentication(Authctxt *);  void    do_authentication(Authctxt *);
 void    do_authentication2(Authctxt *);  void    do_authentication2(Authctxt *);
   
 void    auth_log(Authctxt *, int, int, const char *, const char *,  void    auth_info(Authctxt *authctxt, const char *, ...)
     const char *);              __attribute__((__format__ (printf, 2, 3)))
               __attribute__((__nonnull__ (2)));
   void    auth_log(Authctxt *, int, int, const char *, const char *);
 void    userauth_finish(Authctxt *, int, const char *, const char *);  void    userauth_finish(Authctxt *, int, const char *, const char *);
 int     auth_root_allowed(const char *);  int     auth_root_allowed(const char *);
   

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74