mirror of
https://github.com/ShaYmez/NXDNClients.git
synced 2025-04-06 03:18:28 -04:00
Merge branch 'master' into IPv6
This commit is contained in:
commit
ab08eace4b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user