enh(rpc): validate fqdn
This commit is contained in:
parent
315c9c37dc
commit
f2eca15fe2
|
@ -111,11 +111,16 @@ void shellNettestHandler(int32_t signum, void *sigInfo, void *context) { shellEx
|
|||
static void shellWorkAsServer() {
|
||||
SShellArgs *pArgs = &shell.args;
|
||||
|
||||
// char fqdn[TSDB_FQDN_LEN] = {0};
|
||||
/// tstrncpy(fqdn, pArgs->host, TSDB_FQDN_LEN);
|
||||
// strtok(fqdn, ":");
|
||||
|
||||
if (pArgs->port == 0) {
|
||||
pArgs->port = tsServerPort;
|
||||
}
|
||||
|
||||
SRpcInit rpcInit = {0};
|
||||
memcpy(rpcInit.localFqdn, tsLocalFqdn, strlen(tsLocalFqdn));
|
||||
rpcInit.localPort = pArgs->port;
|
||||
rpcInit.label = "CHK";
|
||||
rpcInit.numOfThreads = tsNumOfRpcThreads;
|
||||
|
|
Loading…
Reference in New Issue