mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-07 00:14:49 -04:00
Fixed unresolved symbol in TCP Src channel plugin
This commit is contained in:
@@ -252,9 +252,9 @@ bool TCPSrc::handleMessage(const Message& cmd)
|
||||
|
||||
return true;
|
||||
}
|
||||
else if (MsgTCPConnection::match(cmd))
|
||||
else if (MsgTCPSrcConnection::match(cmd))
|
||||
{
|
||||
MsgTCPConnection& con = (MsgTCPConnection&) cmd;
|
||||
MsgTCPSrcConnection& con = (MsgTCPSrcConnection&) cmd;
|
||||
|
||||
if (con.getConnect())
|
||||
{
|
||||
@@ -292,8 +292,7 @@ void TCPSrc::closeAllSockets(Sockets* sockets)
|
||||
void TCPSrc::onNewConnection()
|
||||
{
|
||||
qDebug("TCPSrc::onNewConnection");
|
||||
MsgTCPConnection *cmd = MsgTCPConnection::create(true);
|
||||
getInputMessageQueue()->push(cmd);
|
||||
processNewConnection();
|
||||
}
|
||||
|
||||
void TCPSrc::processNewConnection()
|
||||
@@ -341,7 +340,7 @@ void TCPSrc::processNewConnection()
|
||||
void TCPSrc::onDisconnected()
|
||||
{
|
||||
qDebug("TCPSrc::onDisconnected");
|
||||
MsgTCPConnection *cmd = MsgTCPConnection::create(false);
|
||||
MsgTCPSrcConnection *cmd = MsgTCPSrcConnection::create(false, 0, QHostAddress::Any, 0);
|
||||
getInputMessageQueue()->push(cmd);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user