Skip mdns unregister packages
This commit is contained in:
parent
a8be6c84d1
commit
040d182547
|
@ -227,6 +227,13 @@ public class ServiceDiscovery : MonoBehaviour
|
||||||
ushort dataLength = (ushort)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(data, offset + 8));
|
ushort dataLength = (ushort)IPAddress.NetworkToHostOrder(BitConverter.ToInt16(data, offset + 8));
|
||||||
offset += 10;
|
offset += 10;
|
||||||
|
|
||||||
|
if (ttl == 0)
|
||||||
|
{
|
||||||
|
Debug.LogWarning($"Zero TTL for {name}");
|
||||||
|
// TODO: Remove service from list
|
||||||
|
return offset + dataLength;
|
||||||
|
}
|
||||||
|
|
||||||
if (recordType == 1) // A Record
|
if (recordType == 1) // A Record
|
||||||
{
|
{
|
||||||
IPAddress ipAddress = new IPAddress(new ArraySegment<byte>(data, offset, dataLength).ToArray());
|
IPAddress ipAddress = new IPAddress(new ArraySegment<byte>(data, offset, dataLength).ToArray());
|
||||||
|
|
Loading…
Reference in New Issue