diff --git a/Assets/Scripts/ServiceDiscovery.cs b/Assets/Scripts/ServiceDiscovery.cs index 72f1d77..9284093 100644 --- a/Assets/Scripts/ServiceDiscovery.cs +++ b/Assets/Scripts/ServiceDiscovery.cs @@ -48,28 +48,6 @@ namespace WebViewStream return null; } - private List GetRoutableLocalIPs() - { - List localIPs = new List(); - - foreach (IPAddress local in Dns.GetHostEntry(Dns.GetHostName()).AddressList) - { - if (local.AddressFamily == AddressFamily.InterNetwork) - { - byte[] bytes = local.GetAddressBytes(); - if (bytes[0] == 169 && bytes[1] == 254) - { - Debug.Log($"Skipping non-routable address: {local}"); - continue; - } - - localIPs.Add(local); - } - } - - return localIPs; - } - /// /// Starts listening for mDNS service announcements. ///