Merge commit 'a89bc36310cdaf65e7ebb359cab9728dacfe90e9'

This commit is contained in:
Henry Winkel
2022-09-15 11:20:43 +02:00

View File

@@ -83,7 +83,10 @@ namespace CommService {
public:
CommService(std::string dst,std::string src, std::uint16_t id, deviceMajorType majorType, std::string minorType, unsigned short dstPort ):
dstIp(dst),srcIp(src),majorType_(majorType),minorType_(minorType),broadcastPort(dstPort),stopReceiveThread(false),deviceID_(id){}
dstIp(dst),srcIp(src),majorType_(majorType),minorType_(minorType),broadcastPort(dstPort),stopReceiveThread(false),deviceID_(id){
ReceivingMessageQueue = std::make_shared<ThreadsafeQueue<Message>>();
}
~CommService();