1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-29 05:24:18 -04:00

UDP Source: change UDP port and Audio port accordingly

This commit is contained in:
f4exb
2015-12-04 08:54:47 +01:00
parent c1f1c741f1
commit 3f5d88b48d
2 changed files with 19 additions and 8 deletions
+9 -1
View File
@@ -285,7 +285,15 @@ bool UDPSrc::handleMessage(const Message& cmd)
{
m_udpPort = cfg.getUDPPort();
if (!m_audioSocket->bind(QHostAddress::Any, m_udpPort-1))
disconnect(m_audioSocket, SIGNAL(readyRead()), this, SLOT(audioReadyRead()));
delete m_audioSocket;
m_audioSocket = new QUdpSocket(this);
if (m_audioSocket->bind(QHostAddress::Any, m_udpPort-1))
{
connect(m_audioSocket, SIGNAL(readyRead()), this, SLOT(audioReadyRead()));
}
else
{
qWarning("UDPSrc::handleMessage: cannot bind audio socket");
}