[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.97 and 1.98

version 1.97, 2019/01/19 21:38:24 version 1.98, 2019/01/19 21:41:18
Line 149 
Line 149 
   
 void    do_authentication2(struct ssh *);  void    do_authentication2(struct ssh *);
   
 void    auth_log(Authctxt *, int, int, const char *, const char *);  void    auth_log(struct ssh *, int, int, const char *, const char *);
 void    auth_maxtries_exceeded(Authctxt *) __attribute__((noreturn));  void    auth_maxtries_exceeded(struct ssh *) __attribute__((noreturn));
 void    userauth_finish(struct ssh *, int, const char *, const char *);  void    userauth_finish(struct ssh *, int, const char *, const char *);
 int     auth_root_allowed(struct ssh *, const char *);  int     auth_root_allowed(struct ssh *, const char *);
   
Line 167 
Line 167 
 int     bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **);  int     bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **);
 int     bsdauth_respond(void *, u_int, char **);  int     bsdauth_respond(void *, u_int, char **);
   
 int     allowed_user(struct passwd *);  int     allowed_user(struct ssh *, struct passwd *);
 struct passwd * getpwnamallow(const char *user);  struct passwd * getpwnamallow(struct ssh *, const char *user);
   
 char    *expand_authorized_keys(const char *, struct passwd *pw);  char    *expand_authorized_keys(const char *, struct passwd *pw);
 char    *authorized_principals_file(struct passwd *);  char    *authorized_principals_file(struct passwd *);
Line 203 
Line 203 
 /* debug messages during authentication */  /* debug messages during authentication */
 void     auth_debug_add(const char *fmt,...)  void     auth_debug_add(const char *fmt,...)
     __attribute__((format(printf, 1, 2)));      __attribute__((format(printf, 1, 2)));
 void     auth_debug_send(void);  void     auth_debug_send(struct ssh *);
 void     auth_debug_reset(void);  void     auth_debug_reset(void);
   
 struct passwd *fakepw(void);  struct passwd *fakepw(void);

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98