More error checking on the YSF protocol.

This commit is contained in:
Jonathan Naylor 2020-09-06 15:36:17 +01:00
parent c3944c9a05
commit 9ee4d9a65e

View file

@ -98,9 +98,14 @@ CYSFNetwork::~CYSFNetwork()
bool CYSFNetwork::open()
{
if (m_addrLen == 0U) {
LogError("Unable to resolve the address of the YSF network");
return false;
}
LogMessage("Opening YSF network connection");
return m_socket.open();
return m_socket.open(m_addr);
}
void CYSFNetwork::setDestination(const std::string& name, const sockaddr_storage& addr, unsigned int addrLen)