Change default maxclockerror to 1 ppm
This commit is contained in:
parent
c5587b60b2
commit
28710e0449
2 changed files with 2 additions and 2 deletions
|
@ -2231,7 +2231,7 @@ The @code{maxclockerror} directive sets the maximum assumed frequency
|
||||||
error of the local clock. This is a frequency stability of the clock,
|
error of the local clock. This is a frequency stability of the clock,
|
||||||
not an absolute frequency error.
|
not an absolute frequency error.
|
||||||
|
|
||||||
By default, the maximum assumed error is set to 10 ppm.
|
By default, the maximum assumed error is set to 1 ppm.
|
||||||
|
|
||||||
The syntax is
|
The syntax is
|
||||||
|
|
||||||
|
|
2
conf.c
2
conf.c
|
@ -120,7 +120,7 @@ static char *drift_file = NULL;
|
||||||
static char *rtc_file = NULL;
|
static char *rtc_file = NULL;
|
||||||
static unsigned long command_key_id;
|
static unsigned long command_key_id;
|
||||||
static double max_update_skew = 1000.0;
|
static double max_update_skew = 1000.0;
|
||||||
static double max_clock_error = 10; /* in ppm */
|
static double max_clock_error = 1.0; /* in ppm */
|
||||||
|
|
||||||
static double reselect_distance = 1e-4;
|
static double reselect_distance = 1e-4;
|
||||||
static double stratum_weight = 1.0;
|
static double stratum_weight = 1.0;
|
||||||
|
|
Loading…
Reference in a new issue