Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-25 | fix "listen on hostname" | Henning Brauer | |
fallout from the deferred dns lookups noticed by dhartmei@ | |||
2004-11-12 | some missing includes, from Joerg Sonnenberger <joerg@britannica.bec.de> | Henning Brauer | |
2004-11-10 | ntp_adjtime() -> priv_adjtime() | Henning Brauer | |
ntp_settime() -> priv_settime() ntp_host_dns() -> priv_host_dns() | |||
2004-11-10 | const'ify conffile | Henning Brauer | |
From: Joerg Sonnenberger <joerg@britannica.bec.de> | |||
2004-11-08 | Advice user to use multiple servers. Prodded by Daniel Polak, help and ok jmc@ | Otto Moerbeek | |
ok henning@ | |||
2004-11-07 | document that keywords can be specified multiple times; | Jason McIntyre | |
from otto and myself; prodded by henning; | |||
2004-11-05 | Use SA_LEN() instead of ss.ss_len. Evaluates to the same result but it's | Darren Tucker | |
easier on portable. ok henning@ | |||
2004-11-05 | memleaks in error pathes, patrick latifi, Thanks! | Henning Brauer | |
2004-11-04 | use SIG_DFL instead of SIG_IGN when we are not interested in SIG_CHILD | Henning Brauer | |
anymore, same thing for us and it makes darren's life easier for the portable | |||
2004-11-02 | superfluous comma, From: James Herbert <lists@artyzan.net> | Henning Brauer | |
2004-10-27 | Calculate Hz and round up; ok henning@ | Darren Tucker | |
2004-10-27 | use clock_getres(3) and calculate precision from that, and fill the | Henning Brauer | |
precision field when we reply in server mode accordingly. from phessler | |||
2004-10-22 | oups | Henning Brauer | |
2004-10-22 | in server mode reply with stratum from the peer that we currently prefer | Henning Brauer | |
plus one | |||
2004-10-15 | Only set IPTOS_LOWDELAY on IPv4 interfaces; pointed out by phessler, ok henning | Darren Tucker | |
2004-10-14 | Have ntpd use IPTOS_LOWDELAY; ok henning@ | Darren Tucker | |
2004-10-13 | set rootdelay in replies. | Henning Brauer | |
inherit rootdelay from the delay from the last client update from the peer that we picked last time to adjust the local clock. in some cases we use the average offset between two peers' client updates, then use the average delay between the two as well. | |||
2004-10-13 | in struct ntp_msg, rename "distance" to "rootdelay" to closer match RFCs | Henning Brauer | |
and such | |||
2004-10-13 | thinko, htonl() -> ntohl(). as we don't use the value in question effect zero | Henning Brauer | |
2004-10-13 | fall cleaning | Henning Brauer | |
2004-10-13 | correctly set refid in replies with NTP protocol versions < 4. | Henning Brauer | |
code path for NTP4 remains unchanged, we already set refid correctly there. NTP3 and older uses an IPv4 address as refid. use the IP of the server we last synced to if it was a IPv4 one. sometimes we use the average offset between two, in that case just pick one for the IP. this scheme naturally fails when we query IPv6 servers and have to reply to IPv4 NTP3 (or even older NTP versions) clients - refid stays at 0 then. this is a protocol limitation, nothing we can do about it. | |||
2004-10-13 | when we get back a IMSG_HOST_DNS message from the parent the peer ID within | Henning Brauer | |
might have become invalid (because the peer showed up, dns request sent to parent, peer vanishes, and then the reply comes back), so do not fatal() in that case but just log_warnx(). provoked by brad | |||
2004-10-08 | whitespace both in comment; from bernd | Henning Brauer | |
2004-10-05 | in client_addr_init() and client_nextaddr(), do not set up the socket and | Henning Brauer | |
connect it, instead leave it at -1. in client_query, set up and connect the socket if it is -1. and, the real reason for this change: handle connect failures gracefully ok otto | |||
2004-10-04 | do not take the average offset from all peers when calculating the total | Henning Brauer | |
offset to correct the local clock, but use the median. given a reasonable sized set of servers this makes us nearly immune against outliers or flasetickers, without the need for a horribly complicated outliers detection which does not yield to better results anyway. test & ok otto | |||
2004-09-30 | now that we connect() the client sockets we need to handle ECONNREFUSED as | Henning Brauer | |
non-fatal too, from camield@ | |||
2004-09-24 | connect() the client-side sockets. idea & test & ok camield@ | Henning Brauer | |
2004-09-23 | reset chld_pid to 0 when acting upon a SIGCHLD so we don't try to send it | Henning Brauer | |
a kill then - tiny possible race there pointed out by Brian Poole <raj@cerias.purdue.edu> | |||
2004-09-18 | greatly improved by jmc with some tweaks by yours truly | Henning Brauer | |
2004-09-18 | jmc says S before s and not s before S, sssssssso we do. | Henning Brauer | |
2004-09-18 | implement -S to override earlier -s, requested by theo | Henning Brauer | |
2004-09-18 | say when we run settimeofday() with -s and when not, help from bob | Henning Brauer | |
2004-09-18 | don't call settimeofday() when the offset is smaller than 180 seconds, | Henning Brauer | |
adjtime() will fix that fast enough, from discussion in theo's living room ok mcbride beck | |||
2004-09-18 | add a new -s option, that tells ntpd to set the time using settimeofday() | Henning Brauer | |
once at startup. ntpd delays daemonizing until it has done the intial time setting (or ran into the timeout) in this mode to make sure stuff started later in rc is not subject to time jumps. this eleminates the need to run rdate -n beforehands. with some input from & ok ryan and bob, march music from mickey | |||
2004-09-18 | do not bother overallocating and shrinking the pfd and idx2peer arrays, | Henning Brauer | |
doesn't by us anything. discussed with ryan during dinner at original joe's | |||
2004-09-16 | the "type" param to imsg_compose and imsg_create is really an | Henning Brauer | |
enum imsg_type and not an int | |||
2004-09-16 | in imsg_compose: | Henning Brauer | |
-don't buf_free() on imsg_add() errors, it already does that for us -use imsg_close() instead of buf_close(), does error handling already | |||
2004-09-16 | use imsg_add instead of the lower level buf_add in imsg_create; it already | Henning Brauer | |
does the error checking for us. | |||
2004-09-16 | ewps... | Henning Brauer | |
2004-09-15 | need buf_free() to free buf, free() is not good enough | Henning Brauer | |
2004-09-15 | imsg framework cleanup: | Henning Brauer | |
-kill the _pid flavors of imsg_create and imsg_compose, and just add pid as argument to those -use imsg_create in imsg_compose instead of duplicating code -check for datalen overflow | |||
2004-09-15 | malloc the imsg buffers instead of having them statically, suggested by | Henning Brauer | |
micsky some time ago, ok otto | |||
2004-09-15 | kill another unused function and two debugging printfs | Henning Brauer | |
2004-09-15 | remove the unused variable/macro code, ok theo | Henning Brauer | |
2004-09-15 | unused variables, theo | Henning Brauer | |
2004-09-15 | missing include, from theo | Henning Brauer | |
2004-09-15 | remove buf_write(), not used in ntpd. found by theo | Henning Brauer | |
2004-09-14 | paranoia: reset query->fd to -1 after close, from canacar some time ago | Henning Brauer | |
2004-09-09 | correctly track peer count. fixes a memory corruption. | Henning Brauer | |
with & ok otto millert claudio, ok deraadt canacar | |||
2004-09-07 | ignore ntp_sendmsg()s return value in server_dispatch. could result in | Henning Brauer | |
ntpd exiting on sendmsg() failures, which is not desired. |