1
0
Fork 0

Allow the Parrot to appear as a reflector.

ycs232-kbc
Jonathan Naylor 8 years ago
parent cbe3e1c914
commit 47857b0af6

@ -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;

Loading…
Cancel
Save