diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-12-12 17:01:07 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-12-12 17:01:07 +0000 |
commit | 9f697d6c1de2979cc5e0f3689d10086ceac8a672 (patch) | |
tree | 9db01eb20527d3328607bce9e68ccedbfd5916a5 /src/clock/s6-taiclockd.c | |
parent | 9c4a097d900fb623abeb61d3a58cf58e9c5f383f (diff) | |
download | s6-networking-9f697d6c1de2979cc5e0f3689d10086ceac8a672.tar.xz |
Fix clock programs that recv46; fix s6-tcpserver-access exitcodes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/clock/s6-taiclockd.c')
-rw-r--r-- | src/clock/s6-taiclockd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/clock/s6-taiclockd.c b/src/clock/s6-taiclockd.c index 9a000cc..9dabc5f 100644 --- a/src/clock/s6-taiclockd.c +++ b/src/clock/s6-taiclockd.c @@ -19,6 +19,7 @@ int main (int argc, char const *const *argv) ip46 ip = IP46_ZERO ; uint16_t port = 4014 ; subgetopt l = SUBGETOPT_ZERO ; + int is6 ; PROG = "s6-taiclockd" ; for (;;) { @@ -38,10 +39,11 @@ int main (int argc, char const *const *argv) if (socket_bind46_reuse(s, &ip, port) < 0) strerr_diefu1sys(111, "socket_bind_reuse") ; + is6 = ip46_is6(&ip) ; for (;;) { char packet[256] ; - ssize_t r = socket_recv46(s, packet, 256, &ip, &port) ; + ssize_t r = socket_recv46(s, packet, 256, &ip, &port, is6) ; if ((r >= 20) && !memcmp(packet, "ctai", 4)) { tain now ; |