From 8df0a6e7dd450aab7df1916cdc761638b81727e5 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 18 Nov 2024 22:42:48 +0100 Subject: [PATCH] Remove unused function --- Assets/Scripts/ServiceDiscovery.cs | 22 ---------------------- 1 file changed, 22 deletions(-) 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. ///