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 2901 by maya, Mon Aug 21 12:21:33 2006 UTC revision 2907 by maya, Sat Sep 16 07:24:06 2006 UTC
# Line 1292  static int parse_option(PTInstVar pvar, Line 1292  static int parse_option(PTInstVar pvar,
1292                                  read_ssh_options_from_user_file(pvar, buf);                                  read_ssh_options_from_user_file(pvar, buf);
1293                                  free(buf);                                  free(buf);
1294                                  DeleteFile(option + 13);                                  DeleteFile(option + 13);
1295    
1296                            // /ssh1 と /ssh2 オプションの新規追加 (2006.9.16 maya)
1297                            } else if (MATCH_STR(option + 4, "1") == 0) {
1298                                    pvar->settings.ssh_protocol_version = 1;
1299                            } else if (MATCH_STR(option + 4, "2") == 0) {
1300                                    pvar->settings.ssh_protocol_version = 2;
1301    
1302                          } else {                          } else {
1303                                  char buf[1024];                                  char buf[1024];
1304    
# Line 1332  static int parse_option(PTInstVar pvar, Line 1339  static int parse_option(PTInstVar pvar,
1339                          // あることへの対処。(2004.10.11 yutaka)                          // あることへの対処。(2004.10.11 yutaka)
1340                          pvar->settings.Enabled = 0;                          pvar->settings.Enabled = 0;
1341    
1342                    } else if (MATCH_STR(option + 1, "telnet") == 0) {
1343                            // '/telnet' が指定されているときには '/nossh' と同じく
1344                            // SSHを無効にする (2006.9.16 maya)
1345                            pvar->settings.Enabled = 0;
1346    
1347                  } else if (MATCH_STR(option + 1, "auth") == 0) {                  } else if (MATCH_STR(option + 1, "auth") == 0) {
1348                          // SSH2自動ログインオプションの追加                          // SSH2自動ログインオプションの追加
1349                          //                          //
# Line 3176  int CALLBACK LibMain(HANDLE hInstance, W Line 3188  int CALLBACK LibMain(HANDLE hInstance, W
3188    
3189  /*  /*
3190   * $Log: not supported by cvs2svn $   * $Log: not supported by cvs2svn $
3191     * Revision 1.38  2006/08/21 12:21:33  maya
3192     * コマンドラインパラメータにおいて、ダブルクォーテーションで囲まれたファイル名を正しく認識するようにした。
3193     *
3194   * Revision 1.37  2006/08/09 15:13:17  maya   * Revision 1.37  2006/08/09 15:13:17  maya
3195   * ttermpro.exe のアイコンハンドルを取得できない問題を修正した   * ttermpro.exe のアイコンハンドルを取得できない問題を修正した
3196   *   *

Legend:
Removed from v.2901  
changed lines
  Added in v.2907

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