Skip mdns unregister packages

This commit is contained in:
Santiago Lo Coco 2024-11-04 19:39:28 +01:00
parent a8be6c84d1
commit 040d182547
1 changed files with 7 additions and 0 deletions

View File

@ -227,6 +227,13 @@ public class ServiceDiscovery : MonoBehaviour
ushort dataLength = (ushort)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(data, offset + 8));
offset += 10;
if (ttl == 0)
{
Debug.LogWarning($"Zero TTL for {name}");
// TODO: Remove service from list
return offset + dataLength;
}
if (recordType == 1) // A Record
{
IPAddress ipAddress = new IPAddress(new ArraySegment<byte>(data, offset, dataLength).ToArray());