You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
625 B

Description: Fix issue where udptunnel was failing to receive packets sent to a multicast address. (See #254834).
Author: singh_chinmay@extenprise.net
--- udptunnel-1.1.orig/udptunnel.c
+++ udptunnel-1.1/udptunnel.c
@@ -217,7 +217,7 @@
(*relays)[i].udpaddr.sin_port = htons(udpport + i);
(*relays)[i].udpaddr.sin_family = AF_INET;
(*relays)[i].udp_ttl = udpttl;
- (*relays)[i].multicast_udp = IN_MULTICAST(htons(udpaddr.s_addr));
+ (*relays)[i].multicast_udp = IN_MULTICAST(htonl(udpaddr.s_addr));
(*relays)[i].tcpaddr.sin_addr = tcpaddr;
(*relays)[i].tcpaddr.sin_port = htons(tcpport + i);