Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-07 Thread Jan Ceuleers
Danny Mayer wrote:
 Jan Ceuleers wrote:
 This means that there is no need to allocate memory for constructing the 
 reply packet, no need to copy data from received to transmitted packet, etc.
 
 This is also false. That's not what the code does. The recvbuf structure
 is not even the same size as the transmitbuf structure.

I wasn't talking about the recvbuf and transmitbuf structures, but the 
socket receive and transmit buffers.

Besides, transmitbuf appears to only exist in the Windows port.

Jan

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-06 Thread Danny Mayer
Jan Ceuleers wrote:
 [EMAIL PROTECTED] wrote:
  Just look at the NTP/SNTP request format and for ***every*** field
  explain why would a client send it to a server. Do not pick just one
  field like MODE, explain for ***all*** fields.
 
 I believe that the principal reason for having the same format for the 
 received and the transmitted packet is so that the server can reply 
 simply by modifying the received packet and transmitting the result.
 
 This means that there is no need to allocate memory for constructing the 
 reply packet, no need to copy data from received to transmitted packet, etc.

This is also false. That's not what the code does. The recvbuf structure
is not even the same size as the transmitbuf structure.

Danny
___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-05 Thread David L. Mills
(sender?),

As for symmetry in request/response being uncommon, you may consder ICMP 
Echo/Echo Reply and even TCP as uncommon, and that is curious.

The RFC describes formulas for computing the offset and delay. You 
consider this ***alone*** is the slowest way. You imply there are 
other ways to compute these values and all of them are faster. Please 
reveal some examples.

You also hint that you want to collect samples as fast as possible. If 
you confine this to your own servers, be happy. If you do that with 
public servers, you may get a very rude Kiss-o'-Death packet and a 
complaint to the Internet Police. In addition, at least with my servers, 
you will be permanantly blacklisted.

Dave

[EMAIL PROTECTED] wrote:

 On Dec 1, 3:07 pm, Joseph Gwinn [EMAIL PROTECTED] wrote:
 
In article
[EMAIL PROTECTED],

 [EMAIL PROTECTED] wrote:

Does anybody know of any *practical* samples on how to
implement NTP/SNTP client?. The goal is to provide accurate
time for a program/client running on Windows Vista.

Specifically, what values to include in the the request message,
how to process the reply message, etc.

I am NOT asking how to send/receive UDP datagrams, or where
to find comprehensive descriptions like RFC documents, or how
to build or design user interfaces.

Only a narrow description focused on NTP/SNTP request/reply
datagrams for a simple PC client, preferably in C/C++ source
code.

I've done this in an embedded realtime system.  (No, the source code is
not available.)  

In Appendix A of RFC-1305 you will find the format of the NTPv3
request/response packet.  Send this packet to port 123 of the NTP
server, and read the reply packet.  It's pretty easy.  

 
 
  I saw this format. From data comm point of view it is very unusual
  to have the same format for request and reply.
 
  Sending/receiving the packet to port 123 is the first thing I tried.
  This is not an issue. The issue is to use all the  values in
  request and reply correctly and reliably. And the quickest
  way is to get as many ***samples*** as possible, the
  RFC  doc ***alone*** is the slowest way.
 
 

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-05 Thread Danny Mayer
[EMAIL PROTECTED] wrote:
 On Dec 3, 3:34 am, [EMAIL PROTECTED] (David
 Woolley) wrote:
 In article [EMAIL PROTECTED],

 [EMAIL PROTECTED] wrote:
  QueryPerformanceCounter() directly off the hardware. Windows
  scheduling has no impact here, the drawbacks of tick counts do not
 Windows scheduling will cause uncertainty in the time you get from
 your SNTP requests which you use to calibrate the performance counters.
 (It will also cause uncertainties in the time of whatever real world
 event is associated with the times being recorded by your software.)

 
   Windows scheduling will NOT cause any bigger uncertainty than many
   other factors including network delays or scheduling on my Linksys
 router
   (probably Unix-like OS) that relays all my incoming/outgoing IP
 traffic.
 

Then you have no idea. There is plenty of evidence to disprove this. I
have plenty of suspicious pieces that may be the cause of the issues
including interrupts and message pumping.

   The most important thing is that my code will be able to measure
 fairly
   consistently the time between sending a request and receiving a
 reply
   for ***all*** servers in microseconds. I will use at least five
 servers.
   It would not be possible with TICKS but it is possible with high
 frequency
   counters because they operate on different principle as stated. This
 is the
   key difference!!! Consequently, it will be possible to estimate the
 drift of the
   PC counter and come up with servers' polling frequencies that
 satisfy my
   reqs for accuracy.
 
   So do not make  it more complicated than it is. The rest belongs to
 the
   algorithims I will use and you do not know them, and I am not ready
 to
   discusss them.
 

That's okay, we don't need to know. If you can prove you get better
results then I'm sure you will let us know. We would welcome something
better but you need to show it really is better for most (if not all)
cases that ntp deals with.

Danny
___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-04 Thread Danny Mayer
Martin Burnicki wrote:
 
 AFAIK the code in the SNTP subdirectory has not yet been ported to
 Windows ...
 
 Martin

We probably wron't try since that code is supposed to be rewritten. The
effort doesn't justify the cost.

Danny
___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-03 Thread guuwwe
On Dec 3, 3:34 am, [EMAIL PROTECTED] (David
Woolley) wrote:
 In article [EMAIL PROTECTED],

 [EMAIL PROTECTED] wrote:
   QueryPerformanceCounter() directly off the hardware. Windows
   scheduling has no impact here, the drawbacks of tick counts do not

 Windows scheduling will cause uncertainty in the time you get from
 your SNTP requests which you use to calibrate the performance counters.
 (It will also cause uncertainties in the time of whatever real world
 event is associated with the times being recorded by your software.)


  Windows scheduling will NOT cause any bigger uncertainty than many
  other factors including network delays or scheduling on my Linksys
router
  (probably Unix-like OS) that relays all my incoming/outgoing IP
traffic.

  The most important thing is that my code will be able to measure
fairly
  consistently the time between sending a request and receiving a
reply
  for ***all*** servers in microseconds. I will use at least five
servers.
  It would not be possible with TICKS but it is possible with high
frequency
  counters because they operate on different principle as stated. This
is the
  key difference!!! Consequently, it will be possible to estimate the
drift of the
  PC counter and come up with servers' polling frequencies that
satisfy my
  reqs for accuracy.

  So do not make  it more complicated than it is. The rest belongs to
the
  algorithims I will use and you do not know them, and I am not ready
to
  discusss them.

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-03 Thread Jan Ceuleers
[EMAIL PROTECTED] wrote:
  Just look at the NTP/SNTP request format and for ***every*** field
  explain why would a client send it to a server. Do not pick just one
  field like MODE, explain for ***all*** fields.

I believe that the principal reason for having the same format for the 
received and the transmitted packet is so that the server can reply 
simply by modifying the received packet and transmitting the result.

This means that there is no need to allocate memory for constructing the 
reply packet, no need to copy data from received to transmitted packet, etc.

This could conceivably be done very close to (or indeed in) the 
hardware, but even if it is done in user space (as is the case in ntpd) 
this saves precious time, which is important in a timing application.

Optimising the packet format for conveying just enough information (i.e. 
optimising for bandwidth) is of secondary importance (particularly given 
the overhead that IP already represents), and is in fact 
counterproductive in the light of the above argument.

Hope this helps.

Cheers, Jan

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-03 Thread guuwwe
On Dec 3, 2:18 pm, Jan Ceuleers [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
   Just look at the NTP/SNTP request format and for ***every*** field
   explain why would a client send it to a server. Do not pick just one
   field like MODE, explain for ***all*** fields.

 I believe that the principal reason for having the same format for the
 received and the transmitted packet is so that the server can reply
 simply by modifying the received packet and transmitting the result.


There is no need to reuse storage from a received request to
create
a response. Even during early 80's when NTP protocol was conceived
this
kind of explanation would not fly. Even if you really wanted to reuse
you
would simply define all the request-specifc fields at the beginning of
the
packet and the server would overlay the received request at the
beginnging
of the response, and all the rest would be the same. A client would
send
only request-specific fields and the server would send them all the
fields.

 This means that there is no need to allocate memory for constructing the
 reply packet, no need to copy data from received to transmitted packet, etc.


As explained above, the same could be acomplished with a simple
overlay.
Besides, it is funny to talk about allocating memory of 48 bytes by a
server
designed around a single task of sending 48 bytes. It is like talking
about
UPS service renting a truck every time when it has to ship a single
package.
Even it does not make sense for a client. Definitely, you do not
allocate
***dynamically*** memory that is used all the time.

 This could conceivably be done very close to (or indeed in) the
 hardware, but even if it is done in user space (as is the case in ntpd)
 this saves precious time, which is important in a timing application.


 I guarantee you that all the software servers incl. ntpd have so much
cpu
 and memory waste in them that talking about optimizing/copying
 48 bytes is like cleaning up the streets of a major city with a
single
  toothbrush, even during the 80s.

 Optimising the packet format for conveying just enough information (i.e.
 optimising for bandwidth) is of secondary importance (particularly given
 the overhead that IP already represents), and is in fact
 counterproductive in the light of the above argument.


 Sending an empty response packet inside a request is like ordering a
product
 by sending an empty box first. Such a bandwidth waste would not be
tolerated
 during the 80s. Apparently, this went unnoticed during the 80s
because the
 IP traffic was relatively small, and the IP traffic with time
requests (NTP or otherwise)
was even smaller. So nobody cared.


___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-02 Thread guuwwe
On Dec 2, 7:03 am, [EMAIL PROTECTED] (David
Woolley) wrote:
 In article [EMAIL PROTECTED],

 [EMAIL PROTECTED] wrote:
   In article [EMAIL PROTECTED],

[EMAIL PROTECTED] writes:
   Does anybody know of any *practical* samples on how to
   implement NTP/SNTP client?. The goal is to provide accurate

 From your description, NTP is not an option, as implementing NTP requires
 implementing most of the relevant (draft) RFC.  What you are discussing is
 only SNTP.

   Existing packages set the PC system/CMOS clock, and my application
   would have to read it which is not very reliable approach.

 If Vista still doesn't interpolate between clock ticks, it is unlikely
 that your application is going to have precise enough scheduling delays for
 things to really matter.  The real problem is you've chose an HCI platform
 for use in a timing critical application.

 On a platform that does interpolate clock ticks, you should expect a one to
 two orders of magnitude better time by reading the system clock, synchronised
 by NTP, as compared with doing a one off SNTP exchange.  If the clock ticks
 aren't interpolated, you need a very good understanding of the scheduling
 and interrupt latencies in your system, which will probably make extracting
 the SNTP packet details from the NTP or, better, SNTP specifications, trivial.
 I don't think Vista has been around long enough for such information to become
 available, and most IT managers seem to be avoiding Vista like the plague, so
 it may be some time before someone interested in accurate time makes the
 measurements.


 You seem to assume the ticks used by the PC system time, e.g. you get
them
 with GetTickCount(). Most if not all new PC's have an extra hardware
chip called
 high-performance counter (probably located in the processor itself,
maybe even
 use the cycle rate of the processor clock). You read such a counter
with
 QueryPerformanceCounter() directly off the hardware. Windows
 scheduling has no impact here, the drawbacks of tick counts do not
apply here.
 The high-performance counter has frequency 5-20MHz depending on the
PC model,
 i.e. you get resolution of less than 1 microsec/count, directly off
the hardware.
 The issue here is what is the drift of this counter. Once I code my
SNTP client
 I will check it, ans also I will compare to PC ticks.



 WinZip, which most power users of Windows seem to have, can handle this.
 Also, to the best of my recollection, gzip compiles easily on Windows and
 there ought to be Windows builds of it around on the net.

The problem with any free utilities for Windows is that I have to
spend the time to
 decide which one of them is safe enough to install on my PC.
Nowadays, most of them
are infested with viruses and crapware. I plan to use my very old PC,
now packed in a box.



___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-02 Thread Danny Mayer
[EMAIL PROTECTED] wrote:
 Does anybody know of any *practical* samples on how to
 implement NTP/SNTP client?. The goal is to provide accurate
 time for a program/client running on Windows Vista.
 
 Specifically, what values to include in the the request message,
 how to process the reply message, etc.
 
 I am NOT asking how to send/receive UDP datagrams, or where
 to find comprehensive descriptions like RFC documents, or how
 to build or design user interfaces.
 
 Only a narrow description focused on NTP/SNTP request/reply
 datagrams for a simple PC client, preferably in C/C++ source
 code.

Why not just install ntpd and be done? The source code is available for
download from ntp.org.

If you really want to write your own look at RFC4330 and at the NTP v4
draft now getting ready to become an RFC.

Also you need to make sure you keep within the limits of how often you
make a request (normally no more frequently than once every 64 seconds)
and you need to handle KoD packets and follow the requirements of the draft.

Danny
___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-02 Thread Steve Kostecke
On 2007-12-02, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 On Dec 2, 7:03 am, (David Woolley) wrote:

 WinZip, which most power users of Windows seem to have, can handle
 this. Also, to the best of my recollection, gzip compiles easily on
 Windows and there ought to be Windows builds of it around on the net.

 The problem with any free utilities for Windows is that I have
 to spend the time to decide which one of them is safe enough to
 install on my PC. Nowadays, most of them are infested with viruses and
 crapware. I plan to use my very old PC, now packed in a box.

I'm surprised that you've not asked anyone here to repack a current
tarball as a ZIP archive.

I've taken care of that for you... But you'll have to expend a bit
of effort and download it from the attachment table at the bottom of
http://support.ntp.org/Main/SteveKostecke

-- 
Steve Kostecke [EMAIL PROTECTED]
NTP Public Services Project - http://support.ntp.org/

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-02 Thread Dennis Hilberg, Jr.
[EMAIL PROTECTED] wrote:
 The problem with any free utilities for Windows is that I have to
 spend the time to
  decide which one of them is safe enough to install on my PC.
 Nowadays, most of them
 are infested with viruses and crapware. I plan to use my very old PC,
 now packed in a box.

WinRAR is safe.  I have it on my Windows machine with no issues.  It can 
uncompress *.tar, *.gz, *.bz2, and *.z archives, and others listed here: 
http://rarlab.com/otherfmt.htm

-- 
Dennis Hilberg, Jr.  timekeeper(at)dennishilberg(dot)com
NTP Server Information:  http://saturn.dennishilberg.com/ntp.php

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-02 Thread Danny Mayer
[EMAIL PROTECTED] wrote:
 On Dec 1, 3:40 pm, [EMAIL PROTECTED] (Hal
 Murray) wrote:
 In article [EMAIL PROTECTED],

  [EMAIL PROTECTED] writes:
 Does anybody know of any *practical* samples on how to
 implement NTP/SNTP client?. The goal is to provide accurate
 time for a program/client running on Windows Vista.
 Just curious.  Why do you want to roll your own as compared
 to run one of the existing packages?

 
  Existing packages set the PC system/CMOS clock, and my application
  would have to read it which is not very reliable approach.
  My app needs direct access to periodic (5-60mins) accurate ***direct*
   timestamps and it will use high frequency counter provided by PC
  between.

Can you be sure that you will get a better and more accurate timestamp
that way? You might want to consider using a refclock instead it it's
that important to what you are doing.

 Only a narrow description focused on NTP/SNTP request/reply
 datagrams for a simple PC client, preferably in C/C++ source
 code.
 I don't know of any good code you can copy.

 
  I does not have to be a source code but a description/algorithm by
 somebody
  who actually coded reliably.
 
 I'd start at:
  http://support.ntp.org/bin/view/Main/SoftwareDownloads
 and look in the sntp directory.

 
   I did find it. However, the packages use gz formats used by Unix.
   My PC does not have any utility to uncompress them.
 
Use Winzip which supports it natively. There are also free binaries
available for gunzip and for tar.

Danny
___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


[ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread guuwwe
Does anybody know of any *practical* samples on how to
implement NTP/SNTP client?. The goal is to provide accurate
time for a program/client running on Windows Vista.

Specifically, what values to include in the the request message,
how to process the reply message, etc.

I am NOT asking how to send/receive UDP datagrams, or where
to find comprehensive descriptions like RFC documents, or how
to build or design user interfaces.

Only a narrow description focused on NTP/SNTP request/reply
datagrams for a simple PC client, preferably in C/C++ source
code.



___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread Joseph Gwinn
In article 
[EMAIL PROTECTED],
 [EMAIL PROTECTED] wrote:

 Does anybody know of any *practical* samples on how to
 implement NTP/SNTP client?. The goal is to provide accurate
 time for a program/client running on Windows Vista.
 
 Specifically, what values to include in the the request message,
 how to process the reply message, etc.
 
 I am NOT asking how to send/receive UDP datagrams, or where
 to find comprehensive descriptions like RFC documents, or how
 to build or design user interfaces.
 
 Only a narrow description focused on NTP/SNTP request/reply
 datagrams for a simple PC client, preferably in C/C++ source
 code.

I've done this in an embedded realtime system.  (No, the source code is 
not available.)  

In Appendix A of RFC-1305 you will find the format of the NTPv3 
request/response packet.  Send this packet to port 123 of the NTP 
server, and read the reply packet.  It's pretty easy.  

The NTPv3 packet format will work with all timeservers of NTPv3 and 
above.

Joe Gwinn

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread Jan Ceuleers
[EMAIL PROTECTED] wrote:
 Does anybody know of any *practical* samples on how to
 implement NTP/SNTP client?. The goal is to provide accurate
 time for a program/client running on Windows Vista.

Have you seen the sntp directory in the reference implementation tarball?

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread Hal Murray
In article [EMAIL PROTECTED],
 [EMAIL PROTECTED] writes:
Does anybody know of any *practical* samples on how to
implement NTP/SNTP client?. The goal is to provide accurate
time for a program/client running on Windows Vista.

Just curious.  Why do you want to roll your own as compared
to run one of the existing packages?


Only a narrow description focused on NTP/SNTP request/reply
datagrams for a simple PC client, preferably in C/C++ source
code.

I don't know of any good code you can copy.

I'd start at:
  http://support.ntp.org/bin/view/Main/SoftwareDownloads
and look in the sntp directory.


There are two issues.  (maybe more)

One is getting the time right.

The other is not screwing up the rest of the network
or putting an unreasonable load on the servers.

Please be sure to read:
  NTP server misuse and abuse
  http://en.wikipedia.org/wiki/NTP_server_misuse_and_abuse

-- 
These are my opinions, not necessarily my employer's.  I hate spam.

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread David J Taylor
[EMAIL PROTECTED] wrote:
 Does anybody know of any *practical* samples on how to
 implement NTP/SNTP client?. The goal is to provide accurate
 time for a program/client running on Windows Vista.
[]

Why not just run NTP?
  http://www.meinberg.de/english/sw/ntp.htm

Cheers,
David 


___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread guuwwe
On Dec 1, 3:07 pm, Joseph Gwinn [EMAIL PROTECTED] wrote:
 In article
 [EMAIL PROTECTED],

  [EMAIL PROTECTED] wrote:
  Does anybody know of any *practical* samples on how to
  implement NTP/SNTP client?. The goal is to provide accurate
  time for a program/client running on Windows Vista.

  Specifically, what values to include in the the request message,
  how to process the reply message, etc.

  I am NOT asking how to send/receive UDP datagrams, or where
  to find comprehensive descriptions like RFC documents, or how
  to build or design user interfaces.

  Only a narrow description focused on NTP/SNTP request/reply
  datagrams for a simple PC client, preferably in C/C++ source
  code.

 I've done this in an embedded realtime system.  (No, the source code is
 not available.)  

 In Appendix A of RFC-1305 you will find the format of the NTPv3
 request/response packet.  Send this packet to port 123 of the NTP
 server, and read the reply packet.  It's pretty easy.  


 I saw this format. From data comm point of view it is very unusual
 to have the same format for request and reply.

 Sending/receiving the packet to port 123 is the first thing I tried.
 This is not an issue. The issue is to use all the  values in
 request and reply correctly and reliably. And the quickest
 way is to get as many ***samples*** as possible, the
 RFC  doc ***alone*** is the slowest way.


___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions


Re: [ntp:questions] Any samples for NTP/SNTP client code?

2007-12-01 Thread guuwwe
On Dec 1, 3:40 pm, [EMAIL PROTECTED] (Hal
Murray) wrote:
 In article [EMAIL PROTECTED],

  [EMAIL PROTECTED] writes:
 Does anybody know of any *practical* samples on how to
 implement NTP/SNTP client?. The goal is to provide accurate
 time for a program/client running on Windows Vista.

 Just curious.  Why do you want to roll your own as compared
 to run one of the existing packages?


 Existing packages set the PC system/CMOS clock, and my application
 would have to read it which is not very reliable approach.
 My app needs direct access to periodic (5-60mins) accurate ***direct*
  timestamps and it will use high frequency counter provided by PC
 between.

 Only a narrow description focused on NTP/SNTP request/reply
 datagrams for a simple PC client, preferably in C/C++ source
 code.

 I don't know of any good code you can copy.


 I does not have to be a source code but a description/algorithm by
somebody
 who actually coded reliably.

 I'd start at:
  http://support.ntp.org/bin/view/Main/SoftwareDownloads
 and look in the sntp directory.


  I did find it. However, the packages use gz formats used by Unix.
  My PC does not have any utility to uncompress them.

 There are two issues.  (maybe more)

 One is getting the time right.

 The other is not screwing up the rest of the network
 or putting an unreasonable load on the servers.

 Please be sure to read:
   NTP server misuse and abuse
  http://en.wikipedia.org/wiki/NTP_server_misuse_and_abuse

 --
 These are my opinions, not necessarily my employer's.  I hate spam.

___
questions mailing list
questions@lists.ntp.org
https://lists.ntp.org/mailman/listinfo/questions