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

Diff for /src/usr.bin/ssh/ssh.h between version 1.55 and 1.56

version 1.55, 2000/11/25 17:19:33 version 1.56, 2000/12/19 23:17:58
Line 252 
Line 252 
  * information is not available.  This must be called before record_login.   * information is not available.  This must be called before record_login.
  * The host from which the user logged in is stored in buf.   * The host from which the user logged in is stored in buf.
  */   */
 unsigned long  u_long
 get_last_login_time(uid_t uid, const char *logname,  get_last_login_time(uid_t uid, const char *logname,
     char *buf, unsigned int bufsize);      char *buf, u_int bufsize);
   
 /*  /*
  * Records that the user has logged in.  This does many things normally done   * Records that the user has logged in.  This does many things normally done
Line 333 
Line 333 
  * Parses an RSA key (number of bits, e, n) from a string.  Moves the pointer   * Parses an RSA key (number of bits, e, n) from a string.  Moves the pointer
  * over the key.  Skips any whitespace at the beginning and at end.   * over the key.  Skips any whitespace at the beginning and at end.
  */   */
 int     auth_rsa_read_key(char **cpp, unsigned int *bitsp, BIGNUM * e, BIGNUM * n);  int     auth_rsa_read_key(char **cpp, u_int *bitsp, BIGNUM * e, BIGNUM * n);
   
 /*  /*
  * Returns the name of the machine at the other end of the socket.  The   * Returns the name of the machine at the other end of the socket.  The
Line 496 
Line 496 
 int     auth_kerberos_tgt(struct passwd * pw, const char *string);  int     auth_kerberos_tgt(struct passwd * pw, const char *string);
 int     auth_afs_token(struct passwd * pw, const char *token_string);  int     auth_afs_token(struct passwd * pw, const char *token_string);
   
 int     creds_to_radix(CREDENTIALS * creds, unsigned char *buf, size_t buflen);  int     creds_to_radix(CREDENTIALS * creds, u_char *buf, size_t buflen);
 int     radix_to_creds(const char *buf, CREDENTIALS * creds);  int     radix_to_creds(const char *buf, CREDENTIALS * creds);
 #endif                          /* AFS */  #endif                          /* AFS */
   

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56