Merge branch 'master' into IPv6

This commit is contained in:
Jonathan Naylor 2020-09-22 15:21:42 +01:00
commit cccb5eb372
3 changed files with 12 additions and 0 deletions

View file

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