Advertisement

synchronizing computers in a network

Started by April 13, 2004 04:45 PM
12 comments, last by yct 20 years, 10 months ago
hplus0603, are you talking about synchronization using NTP? If so, then where can I learn how to set up NTP server and clients in my LAN? (I use C++) If not, then how should the clients synchronize with the server?
Google
knows.

There''s free source available too.
enum Bool { True, False, FileNotFound };
Advertisement
NTP is too heavyweight for something like this -- it requires you are on the Internet to find a nearby NTP server, and it requires a fair bit of time before it gets accurate. It also suffers from the problem that all the hosts are synchronizing to a remote server, and therefore have some degree of error.

Here's a simpler method.

[edited by - fprefect on April 16, 2004 5:53:17 AM]
Matt Slot / Bitwise Operator / Ambrosia Software, Inc.
Thanx fprefect. This article was of a great help.

This topic is closed to new replies.

Advertisement