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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.168 and 1.169

version 1.168, 2008/10/03 23:56:28 version 1.169, 2008/11/01 04:50:08
Line 212 
Line 212 
 int     userauth_passwd(Authctxt *);  int     userauth_passwd(Authctxt *);
 int     userauth_kbdint(Authctxt *);  int     userauth_kbdint(Authctxt *);
 int     userauth_hostbased(Authctxt *);  int     userauth_hostbased(Authctxt *);
 int     userauth_kerberos(Authctxt *);  
   
 #ifdef GSSAPI  #ifdef GSSAPI
 int     userauth_gssapi(Authctxt *authctxt);  int     userauth_gssapi(Authctxt *authctxt);
Line 361 
Line 360 
         }          }
 }  }
   
   /* ARGSUSED */
 void  void
 input_userauth_error(int type, u_int32_t seq, void *ctxt)  input_userauth_error(int type, u_int32_t seq, void *ctxt)
 {  {
Line 368 
Line 368 
             "type %d", type);              "type %d", type);
 }  }
   
   /* ARGSUSED */
 void  void
 input_userauth_banner(int type, u_int32_t seq, void *ctxt)  input_userauth_banner(int type, u_int32_t seq, void *ctxt)
 {  {
Line 389 
Line 390 
         xfree(lang);          xfree(lang);
 }  }
   
   /* ARGSUSED */
 void  void
 input_userauth_success(int type, u_int32_t seq, void *ctxt)  input_userauth_success(int type, u_int32_t seq, void *ctxt)
 {  {
Line 406 
Line 408 
         authctxt->success = 1;                  /* break out */          authctxt->success = 1;                  /* break out */
 }  }
   
   /* ARGSUSED */
 void  void
 input_userauth_failure(int type, u_int32_t seq, void *ctxt)  input_userauth_failure(int type, u_int32_t seq, void *ctxt)
 {  {
Line 426 
Line 429 
   
         userauth(authctxt, authlist);          userauth(authctxt, authlist);
 }  }
   
   /* ARGSUSED */
 void  void
 input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)  input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt)
 {  {
Line 608 
Line 613 
         return status;          return status;
 }  }
   
   /* ARGSUSED */
 void  void
 input_gssapi_response(int type, u_int32_t plen, void *ctxt)  input_gssapi_response(int type, u_int32_t plen, void *ctxt)
 {  {
Line 647 
Line 653 
         }          }
 }  }
   
   /* ARGSUSED */
 void  void
 input_gssapi_token(int type, u_int32_t plen, void *ctxt)  input_gssapi_token(int type, u_int32_t plen, void *ctxt)
 {  {
Line 674 
Line 681 
         }          }
 }  }
   
   /* ARGSUSED */
 void  void
 input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)  input_gssapi_errtok(int type, u_int32_t plen, void *ctxt)
 {  {
Line 703 
Line 711 
         /* Server will be returning a failed packet after this one */          /* Server will be returning a failed packet after this one */
 }  }
   
   /* ARGSUSED */
 void  void
 input_gssapi_error(int type, u_int32_t plen, void *ctxt)  input_gssapi_error(int type, u_int32_t plen, void *ctxt)
 {  {
Line 767 
Line 776 
   
         return 1;          return 1;
 }  }
   
 /*  /*
  * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST   * parse PASSWD_CHANGEREQ, prompt user and send SSH2_MSG_USERAUTH_REQUEST
  */   */
   /* ARGSUSED */
 void  void
 input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)  input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
 {  {

Legend:
Removed from v.1.168  
changed lines
  Added in v.1.169