[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.17 and 1.18

version 1.17, 2001/05/20 17:20:35 version 1.18, 2001/06/23 00:20:58
Line 26 
Line 26 
 #ifndef AUTH_H  #ifndef AUTH_H
 #define AUTH_H  #define AUTH_H
   
   #include "key.h"
   #include "hostfile.h"
 #include <openssl/rsa.h>  #include <openssl/rsa.h>
   
 #ifdef HAVE_LOGIN_CAP  #ifdef HAVE_LOGIN_CAP
Line 156 
Line 158 
   
 struct passwd * auth_get_user(void);  struct passwd * auth_get_user(void);
   
   
 /* expand a filename - return buffer is allocated by xmalloc */  /* expand a filename - return buffer is allocated by xmalloc */
 char    *expand_filename(const char *template, struct passwd *pw);  char    *expand_filename(const char *template, struct passwd *pw);
 char    *authorized_keys_file(struct passwd *pw);  char    *authorized_keys_file(struct passwd *pw);
Line 165 
Line 166 
 /* check a file and the path to it */  /* check a file and the path to it */
 int  int
 secure_filename(FILE *f, const char *file, uid_t u, char *err, size_t errlen);  secure_filename(FILE *f, const char *file, uid_t u, char *err, size_t errlen);
   
   /* helper for hostbased auth */
   HostStatus
   check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
       const char *sysfile, const char *userfile);
   
 #define AUTH_FAIL_MAX 6  #define AUTH_FAIL_MAX 6
 #define AUTH_FAIL_LOG (AUTH_FAIL_MAX/2)  #define AUTH_FAIL_LOG (AUTH_FAIL_MAX/2)

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18