mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-03-10 06:53:56 +01:00
Handle the new YSF protocol in the parrot.
This commit is contained in:
parent
6418c4fe6b
commit
61ee63da69
|
|
@ -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