mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-04-05 22:35:42 +00:00
Ignore any incoming YSF info messages.
This commit is contained in:
parent
a2603c8d40
commit
f9cde1565a
3 changed files with 13 additions and 1 deletions
|
|
@ -93,6 +93,10 @@ unsigned int CNetwork::read(unsigned char* data)
|
|||
if (::memcmp(data, "YSFO", 4U) == 0)
|
||||
return 0U;
|
||||
|
||||
// Throw away incoming info messages
|
||||
if (::memcmp(data, "YSFI", 4U) == 0)
|
||||
return 0U;
|
||||
|
||||
// Handle incoming unlinks
|
||||
if (::memcmp(data, "YSFU", 4U) == 0)
|
||||
return 0U;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue