diff options
author | Rob Landley <rob@landley.net> | 2019-02-05 07:45:18 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-02-05 07:45:18 -0600 |
commit | 7a3f339fd722bf9cc13fff1fde7bd98bfed9f67f (patch) | |
tree | 1909d61e682b8207e61ab276d37733c9f15fcb52 /toys/pending/sntp.c | |
parent | b56f9f33fa1c9361f0f12b0179965602cb2363aa (diff) | |
download | toybox-7a3f339fd722bf9cc13fff1fde7bd98bfed9f67f.tar.gz |
Fix server mode and make request timeout 3 tries of 3 seconds (9 sec total).
Diffstat (limited to 'toys/pending/sntp.c')
-rw-r--r-- | toys/pending/sntp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toys/pending/sntp.c b/toys/pending/sntp.c index b85b9dce..bd2f75ca 100644 --- a/toys/pending/sntp.c +++ b/toys/pending/sntp.c @@ -153,7 +153,7 @@ void sntp_main(void) // daemon and oneshot modes send a packet each time through outer loop else { - then = (now = millitime()) + 4000; + then = (now = millitime()) + 3000; if (FLAG(d) || FLAG(D)) then = now + (1<<TT.r)*1000; @@ -176,7 +176,7 @@ void sntp_main(void) now = millitime(); strike = xrecvwait(fd, toybuf, sizeof(toybuf), &sa, then-now); if (strike<1) { - if (!(FLAG(S)||FLAG(m)||FLAG(D)||FLAG(d)) && ++tries>3) + if (!(FLAG(S)||FLAG(m)||FLAG(D)||FLAG(d)) && ++tries == 3) error_exit("no reply from %s", *toys.optargs); break; } @@ -209,8 +209,8 @@ void sntp_main(void) strcpy(buf+12, "LOCL"); pktime[6+3] = pktime[5]; // send back reference time they sent us // everything else is current time - pktime[6+2] = pktime[6+4] = pktime[6+5] = lunchtime(0, 0); - xsendto(fd, toybuf, 48, (void *)&sa); + pktime[6+2] = pktime[6+4] = pktime[6+5] = SWAP_BE64(lunchtime(0, 0)); + xsendto(fd, buf, 48, (void *)&sa); // Got a time packet from a recognized server } else { |