|
@@ -235,6 +235,12 @@ namespace GLOBAL
|
|
|
if (g_stSATConfig.szCaseResultDir[_tcslen(g_stSATConfig.szCaseResultDir) - 1] != '\\')
|
|
|
_tcscat_s(g_stSATConfig.szCaseResultDir, MAX_PATH, "\\");
|
|
|
|
|
|
+
|
|
|
+ TCHAR szValue[10] = { 0 };
|
|
|
+ _itoa_s(g_stSATConfig.dwTCPSvrPort, szValue, 10);
|
|
|
+
|
|
|
+ WritePrivateProfileString(_T("COMM"), _T("runner_tcp_port"), szValue, szIniPath);
|
|
|
+
|
|
|
return 0;
|
|
|
}
|
|
|
|