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

Diff for /src/usr.bin/ssh/monitor_wrap.h between version 1.5.2.1 and 1.5.2.2

version 1.5.2.1, 2002/05/17 00:03:23 version 1.5.2.2, 2002/10/11 14:53:06
Line 44 
Line 44 
 int mm_key_sign(Key *, u_char **, u_int *, u_char *, u_int);  int mm_key_sign(Key *, u_char **, u_int *, u_char *, u_int);
 void mm_inform_authserv(char *, char *);  void mm_inform_authserv(char *, char *);
 struct passwd *mm_getpwnamallow(const char *);  struct passwd *mm_getpwnamallow(const char *);
 char* mm_auth2_read_banner(void);  char *mm_auth2_read_banner(void);
 int mm_auth_password(struct Authctxt *, char *);  int mm_auth_password(struct Authctxt *, char *);
 int mm_key_allowed(enum mm_keytype, char *, char *, Key *);  int mm_key_allowed(enum mm_keytype, char *, char *, Key *);
 int mm_user_key_allowed(struct passwd *, Key *);  int mm_user_key_allowed(struct passwd *, Key *);
Line 78 
Line 78 
 /* skey */  /* skey */
 int mm_skey_query(void *, char **, char **, u_int *, char ***, u_int **);  int mm_skey_query(void *, char **, char **, u_int *, char ***, u_int **);
 int mm_skey_respond(void *, u_int, char **);  int mm_skey_respond(void *, u_int, char **);
   
   /* auth_krb */
   #ifdef KRB4
   int mm_auth_krb4(struct Authctxt *, void *, char **, void *);
   #endif
   #ifdef KRB5
   /* auth and reply are really krb5_data objects, but we don't want to
    * include all of the krb5 headers here */
   int mm_auth_krb5(void *authctxt, void *auth, char **client, void *reply);
   #endif
   
 /* zlib allocation hooks */  /* zlib allocation hooks */
   

Legend:
Removed from v.1.5.2.1  
changed lines
  Added in v.1.5.2.2