Merge pull request #222 from juribeparada/master

Possible fix of loop after Internet down (DMR)?
This commit is contained in:
Jonathan Naylor 2016-11-18 06:12:34 +00:00 committed by GitHub
commit 4cfd82431c

View file

@ -559,7 +559,7 @@ bool CDMRNetwork::write(const unsigned char* data, unsigned int length)
bool ret = m_socket.write(data, length, m_address, m_port);
if (!ret) {
LogError("DMR, Socket has failed when writing data to the master, retrying connection");
close();
m_socket.close();
open();
return false;
}