Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,18 @@ public static class Time
public static async Task<DateTime> GetNetworkTime()
{
var dnsLookupTask = Dns.GetHostEntryAsync(_ntpServer);

if (await Task.WhenAny(dnsLookupTask, Task.Delay(DnsLookupTimeoutMS)) == dnsLookupTask)
{
var ipEndPoint = new IPEndPoint(dnsLookupTask.Result.AddressList[0], 123);
return await GetNetworkTime(ipEndPoint);
}
else
{

if (await Task.WhenAny(dnsLookupTask, Task.Delay(DnsLookupTimeoutMS)) != dnsLookupTask)
throw new Exception("Time.GetNetworkTime() DNS lookup has timed out.");

var ipEndPoint = new IPEndPoint(0, 0);
foreach (var t in dnsLookupTask.Result.AddressList)
{
if (t.AddressFamily != AddressFamily.InterNetwork) continue;
ipEndPoint = new IPEndPoint(t, 123);
break;
}
return await GetNetworkTime(ipEndPoint);
}

private static async Task<DateTime> GetNetworkTime(IPEndPoint endPoint)
Expand Down