If my aim is to make sure time gets synchronized then which protocol should I use and which server should I use?
i.e. what would a Generic.SynchronizeSystemClock() method do?
Which would be the most reliable or should they be tried in some order in case the first fails:
// synchronize over NTP protocol
Ntp.SynchronizeSystemClock("pool.ntp.org");
// synchronize over TIME protocol
Time.SynchronizeSystemClock("test.rebex.net");
// synchronize over DAYTIME protocol
Daytime.SynchronizeSystemClock("test.rebex.net");
[ from http://www.rebex.net/time.net/ ]
Also, are these good servers to use?
Thanks!