Allow the Parrot to appear as a reflector.
This commit is contained in:
parent
cbe3e1c914
commit
47857b0af6
1 changed files with 8 additions and 0 deletions
|
@ -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…
Reference in a new issue