2021-09-10 Fred Gleason <fredg@paravelsystems.com>

* Fixed a 'no such signal' error in 'rdcatchd/rdcatchd.cpp'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-09-10 17:16:11 -04:00
parent 1cc4b5b6dd
commit 49d6b2a528
2 changed files with 3 additions and 1 deletions

View File

@ -22391,3 +22391,5 @@
to 7005.
* Removed support for the (broken) 'Delay=' directive from
'pypad_nautel.py'.
2021-09-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a 'no such signal' error in 'rdcatchd/rdcatchd.cpp'.

View File

@ -462,7 +462,7 @@ void MainObject::newConnectionData()
}
connect(sock,SIGNAL(readyRead()),catch_ready_mapper,SLOT(map()));
catch_ready_mapper->setMapping(sock,i);
connect(sock,SIGNAL(connectionClosed()),catch_kill_mapper,SLOT(map()));
connect(sock,SIGNAL(disconnected()),catch_kill_mapper,SLOT(map()));
catch_kill_mapper->setMapping(sock,i);
rda->syslog(LOG_DEBUG,"created connection %d",i);
}