Skip to content

Fix: SocketException with GetNetworkTime on cell #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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