1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-12-08 14:58:42 +00:00

Add timezone field to timestamps

This commit is contained in:
Carsten Larsen
2016-09-04 14:15:03 +02:00
parent 6c2d2ab473
commit 8af544a6b7
23 changed files with 217 additions and 94 deletions

View File

@ -28,13 +28,13 @@ namespace Ntp.Analyzer.Objects
protected DispersionReading(
int id,
DateTime time,
int zone,
Host host,
Peer peer,
ReadingBulk bulk,
double offset,
double jitter
)
: base(id, time, host, bulk)
: base(id, time, zone, host)
{
Peer = peer;
Offset = offset;