Handle the new YSF protocol in the parrot.
This commit is contained in:
parent
6418c4fe6b
commit
61ee63da69
1 changed files with 4 additions and 0 deletions
|
@ -96,6 +96,10 @@ void CNetwork::clock(unsigned int ms)
|
|||
return;
|
||||
}
|
||||
|
||||
// Handle incoming unlinks
|
||||
if (::memcmp(buffer, "YSFU", 4U) == 0)
|
||||
return;
|
||||
|
||||
// Handle the status command
|
||||
if (::memcmp(buffer, "YSFS", 4U) == 0) {
|
||||
unsigned char status[50U];
|
||||
|
|
Loading…
Reference in a new issue