ChatterBox.Client.Common.Settings.IceServerSettings.GetDefaultList C# (CSharp) Method

GetDefaultList() private static method

private static GetDefaultList ( ) : List
return List
        private static List<IceServer> GetDefaultList()
        {
            return new List<IceServer>
            {
                new IceServer
                {
                    Url = "stun:stun.l.google.com:19302"
                },
                new IceServer
                {
                    Url = "stun:stun1.l.google.com:19302"
                },
                new IceServer
                {
                    Url = "stun:stun2.l.google.com:19302"
                },
                new IceServer
                {
                    Url = "stun:stun3.l.google.com:19302"
                },
                new IceServer
                {
                    Url = "stun:stun4.l.google.com:19302"
                },
                new IceServer
                {
                    Url = "turn:40.76.194.255:3478",
                    Username = "testrtc",
                    Password = "rtc123"
                }
            };
        }
    }
IceServerSettings