Hi,
I have tweaked the file lib/fog/MulticastTask.class.php, changing from the Client Count to 2 the mínimum receivers (just in case there’s a broken PC) and I have set a mínimum wait of 300 seconds.
I have changed the several lines to look like this
[CODE]
$cmd .= ‘cat "’.$path.‘"|’.UDPSENDERPATH.’ --min-wait 300 --min-receivers 2 --portbase ‘.$this->getPortBase().’ ‘.$interface.’ ‘.$wait.’ --full-duplex --ttl 32 --nokbd;';
[/CODE]
but when I launch the multicast task, it is not applying the change, taking the new parameters.
In the multicast.log file you can see
[CODE]
[06-26-14 12:48:14 pm] CMD: cat “/images/Windows7x64Limpia/rec.img.000”|/usr/local/sbin/udp-sender --min-receivers 13 --portbase 63494 --interface eth0 --full-duplex --ttl 32 --nokbd;cat “/images/Windows7x64Limpia/sys.img.000”|/usr/local/sbin/udp-sender --min-receivers 13 --portbase 63494 --interface eth0 --full-duplex --ttl 32 --nokbd;
[/CODE]
Is it there any other place where I should change that ?