mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
d29002b2b2
n/ebtables-2.0.11-x86_64-1.txz: Upgraded. n/iptables-1.8.4-x86_64-1.txz: Upgraded. n/libnftnl-1.1.5-x86_64-1.txz: Upgraded. n/nftables-0.9.3-x86_64-1.txz: Upgraded. n/whois-5.5.3-x86_64-1.txz: Upgraded.
60 lines
1.8 KiB
Diff
60 lines
1.8 KiB
Diff
From 31e14f6e52677c675ee4683f9daab5bf21c07dd6 Mon Sep 17 00:00:00 2001
|
|
From: Petr Mensik <pemensik@redhat.com>
|
|
Date: Wed, 31 Jul 2019 20:35:35 +0200
|
|
Subject: [PATCH] Recent kernel no longer supports SIOCGSTAMP
|
|
|
|
Build without it defined by kernel headers. Do not try SO_TIMESTAMP
|
|
until fixed properly.
|
|
---
|
|
src/dhcp.c | 32 ++++++++++++++++++--------------
|
|
1 file changed, 18 insertions(+), 14 deletions(-)
|
|
|
|
diff --git a/src/dhcp.c b/src/dhcp.c
|
|
index f8d323b..9afdccf 100644
|
|
--- a/src/dhcp.c
|
|
+++ b/src/dhcp.c
|
|
@@ -178,23 +178,27 @@ void dhcp_packet(time_t now, int pxe_fd)
|
|
(sz < (ssize_t)(sizeof(*mess) - sizeof(mess->options))))
|
|
return;
|
|
|
|
- #if defined (HAVE_LINUX_NETWORK)
|
|
- if (ioctl(fd, SIOCGSTAMP, &tv) == 0)
|
|
+#if defined (HAVE_LINUX_NETWORK)
|
|
+#ifdef SIOCGSTAMP
|
|
+ if (tv.tv_sec == 0 && ioctl(fd, SIOCGSTAMP, &tv) == 0)
|
|
recvtime = tv.tv_sec;
|
|
+#endif
|
|
|
|
if (msg.msg_controllen >= sizeof(struct cmsghdr))
|
|
- for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
|
|
- if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
|
|
- {
|
|
- union {
|
|
- unsigned char *c;
|
|
- struct in_pktinfo *p;
|
|
- } p;
|
|
- p.c = CMSG_DATA(cmptr);
|
|
- iface_index = p.p->ipi_ifindex;
|
|
- if (p.p->ipi_addr.s_addr != INADDR_BROADCAST)
|
|
- unicast_dest = 1;
|
|
- }
|
|
+ {
|
|
+ for (cmptr = CMSG_FIRSTHDR(&msg); cmptr; cmptr = CMSG_NXTHDR(&msg, cmptr))
|
|
+ if (cmptr->cmsg_level == IPPROTO_IP && cmptr->cmsg_type == IP_PKTINFO)
|
|
+ {
|
|
+ union {
|
|
+ unsigned char *c;
|
|
+ struct in_pktinfo *p;
|
|
+ } p;
|
|
+ p.c = CMSG_DATA(cmptr);
|
|
+ iface_index = p.p->ipi_ifindex;
|
|
+ if (p.p->ipi_addr.s_addr != INADDR_BROADCAST)
|
|
+ unicast_dest = 1;
|
|
+ }
|
|
+ }
|
|
|
|
#elif defined(HAVE_BSD_NETWORK)
|
|
if (msg.msg_controllen >= sizeof(struct cmsghdr))
|
|
--
|
|
2.20.1
|
|
|