{
struct ip_mreqn mreq;
uint8_t ttl = 255;
- int no = 0;
+ int yes = 1;
struct sockaddr_in sa = { 0 };
int fd = iface->fd.fd;
return -1;
}
- if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &no, sizeof(no)) < 0)
+ if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &yes, sizeof(yes)) < 0)
fprintf(stderr, "ioctl failed: IP_MULTICAST_LOOP\n");
return 0;
{
struct ipv6_mreq mreq;
int ttl = 255;
- int no = 0;
+ int yes = 1;
struct sockaddr_in6 sa = { 0 };
int fd = iface->fd.fd;
return -1;
}
- if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &no, sizeof(no)) < 0)
+ if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &yes, sizeof(yes)) < 0)
fprintf(stderr, "ioctl failed: IPV6_MULTICAST_LOOP\n");
return 0;