mirror of
https://github.com/clearlinux/systemd-stable.git
synced 2026-09-06 05:32:02 +00:00
resolved: always drop multicast membership before adding one
This is apparently necessary on some devices, such as veth.
This commit is contained in:
@@ -353,6 +353,12 @@ int dns_scope_llmnr_membership(DnsScope *s, bool b) {
|
||||
if (fd < 0)
|
||||
return fd;
|
||||
|
||||
/* Always first try to drop membership before we add
|
||||
* one. This is necessary on some devices, such as
|
||||
* veth. */
|
||||
if (b)
|
||||
setsockopt(fd, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreqn, sizeof(mreqn));
|
||||
|
||||
if (setsockopt(fd, IPPROTO_IP, b ? IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP, &mreqn, sizeof(mreqn)) < 0)
|
||||
return -errno;
|
||||
|
||||
@@ -366,6 +372,9 @@ int dns_scope_llmnr_membership(DnsScope *s, bool b) {
|
||||
if (fd < 0)
|
||||
return fd;
|
||||
|
||||
if (b)
|
||||
setsockopt(fd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
|
||||
|
||||
if (setsockopt(fd, IPPROTO_IPV6, b ? IPV6_ADD_MEMBERSHIP : IPV6_DROP_MEMBERSHIP, &mreq, sizeof(mreq)) < 0)
|
||||
return -errno;
|
||||
} else
|
||||
|
||||
Reference in New Issue
Block a user