mirror of
https://github.com/ShaYmez/P25Clients.git
synced 2024-11-21 19:55:22 -05:00
Handle relinking cleanly.
This commit is contained in:
parent
820fd5471a
commit
ce94d72fc6
@ -267,7 +267,12 @@ void CP25Gateway::run()
|
||||
srcId |= (buffer[3U] << 0) & 0x0000FFU;
|
||||
|
||||
if (dstId != currentId) {
|
||||
if (dstId == 9999U) {
|
||||
CP25Reflector* reflector = NULL;
|
||||
if (dstId != 9999U)
|
||||
reflector = reflectors.find(dstId);
|
||||
|
||||
// If we're unlinking or changing reflectors, unlink from the current one
|
||||
if (dstId == 9999U || reflector != NULL) {
|
||||
std::string callsign = lookup->find(srcId);
|
||||
LogMessage("Unlinked from reflector %u by %s", currentId, callsign.c_str());
|
||||
currentId = dstId;
|
||||
@ -279,8 +284,9 @@ void CP25Gateway::run()
|
||||
pollTimer.stop();
|
||||
lostTimer.stop();
|
||||
}
|
||||
} else {
|
||||
CP25Reflector* reflector = reflectors.find(dstId);
|
||||
}
|
||||
|
||||
// Link to the new reflector
|
||||
if (reflector != NULL) {
|
||||
currentId = dstId;
|
||||
currentAddr = reflector->m_address;
|
||||
@ -299,7 +305,6 @@ void CP25Gateway::run()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If we're linked and we have a network, send it on
|
||||
if (currentId != 9999U && remoteNetwork != NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user