You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,8 +38,8 @@ The response from `NtpPacketParser.parse` will always return the following objec
38
38
| version |`Integer`| NTP version number, currently 4 |
39
39
| mode |`Integer`| Request/response mode |
40
40
| stratum |`Integer`| Stratum of the server |
41
-
| poll |`Integer`| Integer representing the maximum interval between successive messages (Note: you need to apply `Math.log2` to get the real value) |
42
-
| precision |`Integer`| Integer representing the precision of the system clock (Note: you need to apply `Math.log2` to get the real value) |
41
+
| poll |`Integer`| Integer representing the maximum interval in log2 seconds between successive messages (Note: you need to apply `Math.pow(2, <value>)` to get the real value) |
42
+
| precision |`Integer`| Integer representing the precision of the system clock in log2 seconds (Note: you need to apply `Math.pow(2, <value>)` to get the real value) |
43
43
| rootDelay |`Date`| Total round-trip delay to the reference clock |
44
44
| rootDispersion |`Date`| Total dispersion to the reference clock |
45
45
| referenceId |`String`| String to identify the particular server or reference clock |
0 commit comments