NTP-client icon indicating copy to clipboard operation
NTP-client copied to clipboard

NTP client in C++ (compatible with chrony)

Results 4 NTP-client issues
Sort by recently updated
recently updated
newest added

It looks like the milliseconds timestamp returned by the request_time method does not return millisecond precision because the packet.transmited_timestamp_sec_frac is not used. See: https://github.com/plusangel/NTP-client/blob/787247efced6ef5d00e2817dd945857c029a45df/src/ntp_client.cpp#L122 Proposed fix: `double milliseconds = (double)txTm...

I have successfully implemented your NTP client in an openframeworks application and it works perfectly on mac. However on windows it would not compile because it cannot find the libaries...

Hi! Thanks a lot for this great library! I'm using it in my project. Unfortunately, I encountered a few issues on Android related to networking and locking, so I tried...