@Fernando-Gietz said in Multicast data address not change from one task to another one:
Se añade esta linea para que asigne direcciones IP diferentes a cada tarea multicast
I’ve added the patch, but a little more checking involved. This has been added to both the working and working-1.6 branches. It tests the set value for the $address variable. If this variable is set, it will calculate the address. Here’s the snippet of lines:
if ($address) {
$address = long2ip(
ip2long($address) + (
(
$this->getPortBase() / 2 + 1
) % self::getSetting('FOG_MULTICAST_MAX_SESSIONS')
)
);
}
Hopefully this will address the problem people have been seeing and allow the use of multiple sessions.