Allow the Parrot to appear as a reflector.

This commit is contained in:
Jonathan Naylor 2016-06-13 17:46:38 +01:00
parent cbe3e1c914
commit 47857b0af6

View file

@ -111,6 +111,14 @@ void CNetwork::clock(unsigned int ms)
if (::memcmp(buffer, "YSFP", 4U) == 0)
return;
// Handle the status command
if (::memcmp(buffer, "YSFS", 4U) == 0) {
unsigned char status[50U];
::sprintf((char*)status, "YSFS%05u%16.16s%14.14s%03u", 1U, "Parrot", "Parrot", 0U);
m_socket.write(status, 42U, address, port);
return;
}
// Invalid packet type?
if (::memcmp(buffer, "YSFD", 4U) != 0)
return;