mirror of
https://github.com/ShaYmez/NXDNClients.git
synced 2026-06-07 16:44:38 -04:00
Merge branch 'master' into IPv6
This commit is contained in:
@@ -423,8 +423,10 @@ void CNXDNGateway::run()
|
||||
if (reflector == NULL && currentId != 9999U) {
|
||||
LogMessage("Unlinked from reflector %u by remote command", currentId);
|
||||
|
||||
if (voice != NULL)
|
||||
if (voice != NULL) {
|
||||
voice->unlinked();
|
||||
voice->eof();
|
||||
}
|
||||
|
||||
remoteNetwork.writeUnlink(currentAddr, currentAddrLen, currentId);
|
||||
remoteNetwork.writeUnlink(currentAddr, currentAddrLen, currentId);
|
||||
@@ -442,8 +444,10 @@ void CNXDNGateway::run()
|
||||
|
||||
LogMessage("Linked to reflector %u by remote command", currentId);
|
||||
|
||||
if (voice != NULL)
|
||||
if (voice != NULL) {
|
||||
voice->linkedTo(currentId);
|
||||
voice->eof();
|
||||
}
|
||||
|
||||
remoteNetwork.writePoll(currentAddr, currentAddrLen, currentId);
|
||||
remoteNetwork.writePoll(currentAddr, currentAddrLen, currentId);
|
||||
@@ -465,8 +469,10 @@ void CNXDNGateway::run()
|
||||
|
||||
LogMessage("Linked to reflector %u by remote command", currentId);
|
||||
|
||||
if (voice != NULL)
|
||||
if (voice != NULL) {
|
||||
voice->linkedTo(currentId);
|
||||
voice->eof();
|
||||
}
|
||||
|
||||
remoteNetwork.writePoll(currentAddr, currentAddrLen, currentId);
|
||||
remoteNetwork.writePoll(currentAddr, currentAddrLen, currentId);
|
||||
|
||||
Reference in New Issue
Block a user