FIX: fixed the default return of the tcp classes
This commit is contained in:
@@ -54,7 +54,7 @@ namespace DirectCommunication
|
|||||||
receivedMessages_.get(msg);
|
receivedMessages_.get(msg);
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
return nullptr;
|
return "NULL";
|
||||||
}
|
}
|
||||||
|
|
||||||
void DirectCommunicationClient::workerFunc_()
|
void DirectCommunicationClient::workerFunc_()
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ namespace DirectCommunication
|
|||||||
receivedMessages_.get(msg);
|
receivedMessages_.get(msg);
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
return nullptr;
|
return "NULL";
|
||||||
}
|
}
|
||||||
|
|
||||||
int DirectCommunicationServer::countClients()
|
int DirectCommunicationServer::countClients()
|
||||||
|
|||||||
Reference in New Issue
Block a user