Derek-R-S/Light-Reflective-Mirror

View on GitHub
LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer/Endpoint/EndpointExtra.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Net;
using System.Net.Sockets;

namespace LightReflectiveMirror.LoadBalancing
{
    public partial class Endpoint
    {
        static void CacheAllServers()
        {
            foreach (var region in _regionRooms)
                _cachedRegionRooms[region.Key] = JsonConvert.SerializeObject(region.Value);
        }

        static void ClearAllServersLists()
        {
            foreach (var region in _regionRooms)
                region.Value.Clear();
        }
    }

    public partial class EndpointServer
    {
        public static List<string> GetLocalIps()
        {
            var host = Dns.GetHostEntry(Dns.GetHostName());
            List<string> bindableIPv4Addresses = new();

            foreach (var ip in host.AddressList)
            {
                if (ip.AddressFamily == AddressFamily.InterNetwork)
                {
                    bindableIPv4Addresses.Add(ip.ToString());
                }
            }

            bool hasLocal = false;

            for (int i = 0; i < bindableIPv4Addresses.Count; i++)
            {
                if (bindableIPv4Addresses[i] == "127.0.0.1")
                    hasLocal = true;
            }

            if (!hasLocal)
                bindableIPv4Addresses.Add("127.0.0.1");

            return bindableIPv4Addresses;
        }
    }
}