Browse Subversion Repository
Diff of /trunk/teraterm/ttpset/ttset.c
Parent Directory
| Revision Log
| Patch
| 3786 |
else |
else |
| 3787 |
ts->AutoWinClose = 0; |
ts->AutoWinClose = 0; |
| 3788 |
} |
} |
|
else if (_stricmp(Temp, "/NAMEDPIPE") == 0) { /* 名前付きパイプ */ |
|
|
ParamPort = IdNamedPipe; |
|
|
} |
|
| 3789 |
else if (_strnicmp(Temp, "/BAUD=", 6) == 0) { /* Serial port baud rate */ |
else if (_strnicmp(Temp, "/BAUD=", 6) == 0) { /* Serial port baud rate */ |
| 3790 |
ParamPort = IdSerial; |
ParamPort = IdSerial; |
| 3791 |
ParamBaud = atoi(&Temp[6]); |
ParamBaud = atoi(&Temp[6]); |
| 3913 |
if (sscanf(&Temp[3], "%hd", &ParamTCP) != 1) |
if (sscanf(&Temp[3], "%hd", &ParamTCP) != 1) |
| 3914 |
ParamTCP = 65535; |
ParamTCP = 65535; |
| 3915 |
} |
} |
| 3916 |
|
else if (_stricmp(Temp, "/PIPE") == 0 || |
| 3917 |
|
_stricmp(Temp, "/NAMEDPIPE") == 0) { /* 名前付きパイプ */ |
| 3918 |
|
ParamPort = IdNamedPipe; |
| 3919 |
|
} |
| 3920 |
else if (_strnicmp(Temp, "/R=", 3) == 0) { /* Replay filename */ |
else if (_strnicmp(Temp, "/R=", 3) == 0) { /* Replay filename */ |
| 3921 |
strncpy_s(Temp2, sizeof(Temp2), &Temp[3], _TRUNCATE); |
strncpy_s(Temp2, sizeof(Temp2), &Temp[3], _TRUNCATE); |
| 3922 |
ConvFName(ts->HomeDir, Temp2, sizeof(Temp2), "", ts->HostName, |
ConvFName(ts->HomeDir, Temp2, sizeof(Temp2), "", ts->HostName, |
|
|
Legend:
| Removed from v.6671 |
|
| changed lines |
| |
Added in v.6693 |
|
|
| |