Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lettier/ntpclient
NTP client.
https://github.com/lettier/ntpclient
c ntp ntp-client ntp-protocol python
Last synced: 8 days ago
JSON representation
NTP client.
- Host: GitHub
- URL: https://github.com/lettier/ntpclient
- Owner: lettier
- License: bsd-3-clause
- Created: 2014-01-09T01:49:00.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-05-07T13:46:14.000Z (over 3 years ago)
- Last Synced: 2024-04-16T04:51:01.828Z (7 months ago)
- Topics: c, ntp, ntp-client, ntp-protocol, python
- Language: C
- Size: 50.8 KB
- Stars: 131
- Watchers: 8
- Forks: 70
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Alt text](screenshot.jpg)
# NTP Client
This NTP client is similar in nature to `ntpdate` but does not accept any command line arguments
nor does it update the system clock. Note that this NTP client does not use any NTP libraries
but rather works directly at the [NTP protocol level](http://tools.ietf.org/html/rfc958).Within `./source` there are two versions of the NTP client. One is written in C while the other
one is written in Python. They both have the same functionality and are independent of one another.
The C version uses `us.pool.ntp.org` as the NTP server while the Python version uses `pool.ntp.org`.For more information be sure to read
[Let's make a NTP Client in C](https://lettier.github.io/posts/2016-04-26-lets-make-a-ntp-client-in-c.html)._(C) 2014 David Lettier._
http://www.lettier.com/## License
See [LICENSE](LICENSE).