Develop and Download Open Source Software

Browse Subversion Repository

Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ssh.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2980 by maya, Wed Jun 6 14:10:12 2007 UTC revision 2983 by yutakapon, Thu Jul 12 14:12:33 2007 UTC
# Line 6544  static BOOL handle_SSH2_userauth_failure Line 6544  static BOOL handle_SSH2_userauth_failure
6544          // retry countの追加 (2005.3.10 yutaka)          // retry countの追加 (2005.3.10 yutaka)
6545          pvar->userauth_retry_count++;          pvar->userauth_retry_count++;
6546    
6547            // サーバが keyboard-interactive しかサポートしていない場合、サーバに余計な
6548            // エラーログが残るため削除。(2007.7.11 yutaka)
6549    #if 0
6550          // keyboard-interactive methodでトライして失敗した場合、次にpassword authentication method          // keyboard-interactive methodでトライして失敗した場合、次にpassword authentication method
6551          // で無条件にトライしてみる。(2005.1.22 yutaka)          // で無条件にトライしてみる。(2005.1.22 yutaka)
6552          if (pvar->keyboard_interactive_done == 1) {          if (pvar->keyboard_interactive_done == 1) {
# Line 6551  static BOOL handle_SSH2_userauth_failure Line 6554  static BOOL handle_SSH2_userauth_failure
6554                  pvar->keyboard_interactive_done = 0; // clear flag                  pvar->keyboard_interactive_done = 0; // clear flag
6555                  return TRUE;                  return TRUE;
6556          }          }
6557    #else
6558            if (pvar->keyboard_interactive_done == 1) {
6559                    pvar->keyboard_interactive_done = 0; // clear flag
6560            }
6561    #endif
6562    
6563          if (pvar->ssh2_autologin == 1) {          if (pvar->ssh2_autologin == 1) {
6564                  // SSH2自動ログインが有効の場合は、リトライは行わない。(2004.12.4 yutaka)                  // SSH2自動ログインが有効の場合は、リトライは行わない。(2004.12.4 yutaka)
# Line 7415  static BOOL handle_SSH2_window_adjust(PT Line 7423  static BOOL handle_SSH2_window_adjust(PT
7423    
7424  /*  /*
7425   * $Log: not supported by cvs2svn $   * $Log: not supported by cvs2svn $
7426     * Revision 1.79  2007/06/06 14:10:12  maya
7427     * プリプロセッサにより構造体が変わってしまうので、INET6 と I18N の #define を逆転させた。
7428     *
7429   * Revision 1.78  2007/05/01 13:45:53  maya   * Revision 1.78  2007/05/01 13:45:53  maya
7430   * チャネルの解放漏れを修正した。   * チャネルの解放漏れを修正した。
7431   *   *

Legend:
Removed from v.2980  
changed lines
  Added in v.2983

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26