Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check for ntp clock shift when scheduling next beacon. #301

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Check for ntp clock shift when scheduling next beacon. Otherwise dire…
…wolf continuously transmits all beacons until it's caught up with the new system clock, which could be days.
  • Loading branch information
craigerl committed Dec 2, 2020
commit ca6c4b06e1a3bd2ebfc9bac587741532f97ab043
8 changes: 8 additions & 0 deletions src/beacon.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,14 @@ static void * beacon_thread (void *arg)
/* i.e. Don't take relative to now in case there was some delay. */

bp->next += bp->every;

/* craigerl: if next beacon is scheduled in the past, then set next beacon relative to now (happens when NTP pushes clock AHEAD) */
/* fixme: if NTP sets clock BACK an hour, this thread will sleep for that hour */
if ( bp->next < now ) {
bp->next = now + bp->every;
dw_printf("\nSystem clock appears to have jumped forward. Beacon schedule updated.\n\n");
}

}

} /* if time to send it */
Expand Down