[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.20 and 1.21

version 1.20, 2001/06/26 06:32:47 version 1.21, 2001/06/26 16:15:23
Line 36 
Line 36 
 #ifdef BSD_AUTH  #ifdef BSD_AUTH
 #include <bsd_auth.h>  #include <bsd_auth.h>
 #endif  #endif
   #ifdef KRB5
   #include <krb5.h>
   #endif
   
 typedef struct Authctxt Authctxt;  typedef struct Authctxt Authctxt;
 typedef struct KbdintDevice KbdintDevice;  typedef struct KbdintDevice KbdintDevice;
   
 struct Authctxt {  struct Authctxt {
         int success;          int              success;
         int postponed;          int              postponed;
         int valid;          int              valid;
         int attempt;          int              attempt;
         int failures;          int              failures;
         char *user;          char            *user;
         char *service;          char            *service;
         struct passwd *pw;          struct passwd   *pw;
         char *style;          char            *style;
         void *kbdintctxt;          void            *kbdintctxt;
 #ifdef BSD_AUTH  #ifdef BSD_AUTH
         auth_session_t *as;          auth_session_t  *as;
 #endif  #endif
   #ifdef KRB4
           char            *krb4_ticket_file;
   #endif
   #ifdef KRB5
           krb5_context     krb5_ctx;
           krb5_auth_context krb5_auth_ctx;
           krb5_ccache      krb5_fwd_ccache;
           krb5_principal   krb5_user;
           char            *krb5_ticket_file;
   #endif
 };  };
   
 /*  /*
Line 125 
Line 138 
  * if the client could not be authenticated, and 1 if authentication was   * if the client could not be authenticated, and 1 if authentication was
  * successful.  This may exit if there is a serious protocol violation.   * successful.  This may exit if there is a serious protocol violation.
  */   */
 int     auth_krb4(const char *, KTEXT, char **);  int     auth_krb4(Authctxt *, KTEXT, char **);
 int     krb4_init(uid_t);  int     auth_krb4_password(Authctxt *, const char *);
 void    krb4_cleanup_proc(void *);  void    krb4_cleanup_proc(void *);
 int     auth_krb4_password(struct passwd *, const char *);  
   
 #ifdef AFS  #ifdef AFS
 #include <kafs.h>  #include <kafs.h>
   
 /* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */  /* Accept passed Kerberos v4 ticket-granting ticket and AFS tokens. */
 int     auth_kerberos_tgt(struct passwd *, const char *);  int     auth_krb4_tgt(Authctxt *, const char *);
 int     auth_afs_token(struct passwd *, const char *);  int     auth_afs_token(Authctxt *, const char *);
 #endif                          /* AFS */  #endif                          /* AFS */
   
 #endif                          /* KRB4 */  #endif                          /* KRB4 */
   
   #ifdef KRB5
   int     auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client);
   int     auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt);
   int     auth_krb5_password(Authctxt *authctxt, const char *password);
   void    krb5_cleanup_proc(void *authctxt);
   #endif /* KRB5 */
   
 void    do_authentication(void);  void    do_authentication(void);
 void    do_authentication2(void);  void    do_authentication2(void);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21