Browse Source

use clock_getres(3) and calculate precision from that, and fill the

precision field when we reply in server mode accordingly. from phessler
OPENBSD_3_7
henning 20 years ago
parent
commit
cda611d670
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      src/usr.sbin/ntpd/ntp.c

+ 8
- 2
src/usr.sbin/ntpd/ntp.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: ntp.c,v 1.38 2004/10/22 21:17:37 henning Exp $ */
/* $OpenBSD: ntp.c,v 1.39 2004/10/27 10:55:27 henning Exp $ */
/* /*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@ -18,6 +18,7 @@
*/ */
#include <sys/param.h> #include <sys/param.h>
#include <sys/time.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <paths.h> #include <paths.h>
@ -59,7 +60,7 @@ ntp_sighdlr(int sig)
pid_t pid_t
ntp_main(int pipe_prnt[2], struct ntpd_conf *nconf) ntp_main(int pipe_prnt[2], struct ntpd_conf *nconf)
{ {
int nfds, i, j, idx_peers, timeout, nullfd;
int a, b, nfds, i, j, idx_peers, timeout, nullfd;
u_int pfd_elms = 0, idx2peer_elms = 0; u_int pfd_elms = 0, idx2peer_elms = 0;
u_int listener_cnt, new_cnt; u_int listener_cnt, new_cnt;
pid_t pid; pid_t pid;
@ -69,6 +70,7 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *nconf)
struct listen_addr *la; struct listen_addr *la;
struct ntp_peer *p; struct ntp_peer *p;
struct ntp_peer **idx2peer = NULL; struct ntp_peer **idx2peer = NULL;
struct timespec tp;
time_t nextaction; time_t nextaction;
void *newp; void *newp;
@ -130,6 +132,10 @@ ntp_main(int pipe_prnt[2], struct ntpd_conf *nconf)
bzero(&conf->status, sizeof(conf->status)); bzero(&conf->status, sizeof(conf->status));
conf->status.leap = LI_ALARM; conf->status.leap = LI_ALARM;
clock_getres(CLOCK_REALTIME, &tp);
for (a = 0, b = tp.tv_nsec; b > 0; a--, b >>= 1);
conf->status.precision = a;
log_info("ntp engine ready"); log_info("ntp engine ready");


Loading…
Cancel
Save