From: Steven Barth Date: Mon, 13 Jul 2015 21:01:19 +0000 (+0200) Subject: odhcpd: remove old workaround X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=commitdiff_plain;h=69c2f4c4d46437299c9a61a51393771436b89015;ds=sidebyside odhcpd: remove old workaround --- diff --git a/src/odhcpd.c b/src/odhcpd.c index 9374052..56f4498 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -174,12 +174,6 @@ ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest, || IN6_IS_ADDR_MC_LINKLOCAL(&dest->sin6_addr)) dest->sin6_scope_id = iface->ifindex; - // IPV6_PKTINFO doesn't really work for IPv6-raw sockets (bug?) - if (dest->sin6_port == 0) { - msg.msg_control = NULL; - msg.msg_controllen = 0; - } - char ipbuf[INET6_ADDRSTRLEN]; inet_ntop(AF_INET6, &dest->sin6_addr, ipbuf, sizeof(ipbuf));