Develop and Download Open Source Software

Browse Subversion Repository

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

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

revision 2833 by yutakakn, Sat Jul 9 17:08:47 2005 UTC revision 2846 by yutakakn, Fri Oct 21 13:36:47 2005 UTC
# Line 864  static BOOL CALLBACK TTXHostDlg(HWND dlg Line 864  static BOOL CALLBACK TTXHostDlg(HWND dlg
864                  GetHNRec = (PGetHNRec) lParam;                  GetHNRec = (PGetHNRec) lParam;
865                  SetWindowLong(dlg, DWL_USER, lParam);                  SetWindowLong(dlg, DWL_USER, lParam);
866    
867                    // ホストヒストリのチェックボックスを追加 (2005.10.21 yutaka)
868                    if (pvar->ts->HistoryList > 0) {
869                            SendMessage(GetDlgItem(dlg, IDC_HISTORY), BM_SETCHECK, BST_CHECKED, 0);
870                    } else {
871                            SendMessage(GetDlgItem(dlg, IDC_HISTORY), BM_SETCHECK, BST_UNCHECKED, 0);
872                    }
873    
874                  if (GetHNRec->PortType == IdFile)                  if (GetHNRec->PortType == IdFile)
875                          GetHNRec->PortType = IdTCPIP;                          GetHNRec->PortType = IdTCPIP;
876                  CheckRadioButton(dlg, IDC_HOSTTCPIP, IDC_HOSTSERIAL,                  CheckRadioButton(dlg, IDC_HOSTTCPIP, IDC_HOSTSERIAL,
# Line 1025  static BOOL CALLBACK TTXHostDlg(HWND dlg Line 1032  static BOOL CALLBACK TTXHostDlg(HWND dlg
1032                                                          pvar->settings.ssh_protocol_version = 2;                                                          pvar->settings.ssh_protocol_version = 2;
1033                                                  }                                                  }
1034                                          }                                          }
1035    
1036                                            // host history check button
1037                                            if (SendMessage(GetDlgItem(dlg, IDC_HISTORY), BM_GETCHECK, 0, 0) == BST_CHECKED) {
1038                                                    pvar->ts->HistoryList = 1;
1039                                            } else {
1040                                                    pvar->ts->HistoryList = 0;
1041                                            }
1042    
1043                                  } else {                                  } else {
1044                                          GetHNRec->PortType = IdSerial;                                          GetHNRec->PortType = IdSerial;
1045                                          GetHNRec->HostName[0] = 0;                                          GetHNRec->HostName[0] = 0;
# Line 3081  int CALLBACK LibMain(HANDLE hInstance, W Line 3096  int CALLBACK LibMain(HANDLE hInstance, W
3096    
3097  /*  /*
3098   * $Log: not supported by cvs2svn $   * $Log: not supported by cvs2svn $
3099     * Revision 1.25  2005/07/09 17:08:47  yutakakn
3100     * SSH2 packet compressionをサポートした。
3101     *
3102   * Revision 1.24  2005/07/09 05:16:06  yutakakn   * Revision 1.24  2005/07/09 05:16:06  yutakakn
3103   * OpenSSL 0.9.8でビルドできるようにした。   * OpenSSL 0.9.8でビルドできるようにした。
3104   *   *

Legend:
Removed from v.2833  
changed lines
  Added in v.2846

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