|
|
@ -1073,8 +1073,7 @@ PF_CONSOLE_CMD( |
|
|
|
"string url", |
|
|
|
"string url", |
|
|
|
"Set the displayable server URL" |
|
|
|
"Set the displayable server URL" |
|
|
|
) { |
|
|
|
) { |
|
|
|
wchar_t *wurl = NULL; |
|
|
|
wchar_t *wurl = hsStringToWString((const char *)params[0]); |
|
|
|
hsStringToWString(wurl, (const char *)params[0]); |
|
|
|
|
|
|
|
SetServerUrl(wurl); |
|
|
|
SetServerUrl(wurl); |
|
|
|
delete [] wurl; |
|
|
|
delete [] wurl; |
|
|
|
} |
|
|
|
} |
|
|
@ -1086,8 +1085,7 @@ PF_CONSOLE_CMD( |
|
|
|
"string name", |
|
|
|
"string name", |
|
|
|
"Set the displayable server name" |
|
|
|
"Set the displayable server name" |
|
|
|
) { |
|
|
|
) { |
|
|
|
wchar_t *wname = NULL; |
|
|
|
wchar_t *wname = hsStringToWString((const char *)params[0]); |
|
|
|
hsStringToWString(wname, (const char *)params[0]); |
|
|
|
|
|
|
|
SetServerDisplayName(wname); |
|
|
|
SetServerDisplayName(wname); |
|
|
|
delete [] wname; |
|
|
|
delete [] wname; |
|
|
|
} |
|
|
|
} |
|
|
@ -1104,8 +1102,7 @@ PF_CONSOLE_CMD( |
|
|
|
"string address", |
|
|
|
"string address", |
|
|
|
"Set the File Server address" |
|
|
|
"Set the File Server address" |
|
|
|
) { |
|
|
|
) { |
|
|
|
wchar_t *wHost = NULL; |
|
|
|
wchar_t *wHost = hsStringToWString((const char *)params[0]); |
|
|
|
hsStringToWString(wHost, (const char *)params[0]); |
|
|
|
|
|
|
|
SetFileSrvHostname(wHost); |
|
|
|
SetFileSrvHostname(wHost); |
|
|
|
delete [] wHost; |
|
|
|
delete [] wHost; |
|
|
|
} |
|
|
|
} |
|
|
@ -1122,8 +1119,7 @@ PF_CONSOLE_CMD( |
|
|
|
"string address", |
|
|
|
"string address", |
|
|
|
"Set the Auth Server address" |
|
|
|
"Set the Auth Server address" |
|
|
|
) { |
|
|
|
) { |
|
|
|
wchar_t *wHost = NULL; |
|
|
|
wchar_t *wHost = hsStringToWString((const char *)params[0]); |
|
|
|
hsStringToWString(wHost, (const char *)params[0]); |
|
|
|
|
|
|
|
SetAuthSrvHostname(wHost); |
|
|
|
SetAuthSrvHostname(wHost); |
|
|
|
delete [] wHost; |
|
|
|
delete [] wHost; |
|
|
|
} |
|
|
|
} |
|
|
@ -1176,8 +1172,7 @@ PF_CONSOLE_CMD( |
|
|
|
"string address", |
|
|
|
"string address", |
|
|
|
"Set the Csr Server address" |
|
|
|
"Set the Csr Server address" |
|
|
|
) { |
|
|
|
) { |
|
|
|
wchar_t *wHost = NULL; |
|
|
|
wchar_t *wHost = hsStringToWString((const char *)params[0]); |
|
|
|
hsStringToWString(wHost, (const char *)params[0]); |
|
|
|
|
|
|
|
SetCsrSrvHostname(wHost); |
|
|
|
SetCsrSrvHostname(wHost); |
|
|
|
delete [] wHost; |
|
|
|
delete [] wHost; |
|
|
|
} |
|
|
|
} |
|
|
@ -1271,8 +1266,7 @@ PF_CONSOLE_CMD( |
|
|
|
"string address", |
|
|
|
"string address", |
|
|
|
"Set the GateKeeper Server address" |
|
|
|
"Set the GateKeeper Server address" |
|
|
|
) { |
|
|
|
) { |
|
|
|
wchar_t *wHost = NULL; |
|
|
|
wchar_t *wHost = hsStringToWString((const char *)params[0]); |
|
|
|
hsStringToWString(wHost, (const char *)params[0]); |
|
|
|
|
|
|
|
SetGateKeeperSrvHostname(wHost); |
|
|
|
SetGateKeeperSrvHostname(wHost); |
|
|
|
delete [] wHost; |
|
|
|
delete [] wHost; |
|
|
|
} |
|
|
|
} |
|
|
|