1
0
Fork 0

Update YSFGateway.cpp

Send the disconnect to the YSF2xxx gateway too
ycs232-kbc
Andy Taylor 6 years ago committed by GitHub
parent aaee560119
commit 2013dd91b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -574,6 +574,10 @@ void CYSFGateway::processWiresX(const unsigned char* buffer, unsigned char fi, u
case WXS_DISCONNECT:
if (m_linkType == LINK_YSF) {
LogMessage("Disconnect has been requested by %10.10s", buffer + 14U);
if ( (wiresXCommandPassthrough) && (::memcmp(buffer + 0U, "YSFD", 4U) == 0) ) {
// Send the disconnect to the YSF2xxx gateway too
m_ysfNetwork->write(buffer);
}
m_ysfNetwork->writeUnlink(3U);
m_ysfNetwork->clearDestination();

Loading…
Cancel
Save