mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-03 18:05:06 -05:00
sourcestats: add fixed minimum delay
If the minimum delay is known (in a static network configuration), it can replace the measured minimum from the register. This should improve the stability of corrections for asymmetric jitter, sample weighting and maxdelay* tests.
This commit is contained in:
@@ -38,7 +38,8 @@ extern void SST_Initialise(void);
|
||||
extern void SST_Finalise(void);
|
||||
|
||||
/* This function creates a new instance of the statistics handler */
|
||||
extern SST_Stats SST_CreateInstance(uint32_t refid, IPAddr *addr, int min_samples, int max_samples);
|
||||
extern SST_Stats SST_CreateInstance(uint32_t refid, IPAddr *addr,
|
||||
int min_samples, int max_samples, double min_delay);
|
||||
|
||||
/* This function deletes an instance of the statistics handler. */
|
||||
extern void SST_DeleteInstance(SST_Stats inst);
|
||||
|
||||
Reference in New Issue
Block a user