![Picture of Colin Jenkins Picture of Colin Jenkins](/graphics/unknown.gif)
Colin Jenkins - 2011-02-17 10:50:35 -
In reply to message 1 from Colin Jenkins
Bug fix: (buffer not flushed)
In recv_socket_loop function, in the foreach loop, there needs to be an unset of $buffer:
function recv_socket_loop(&$socket)
{
$socket =& $this->sockets[$socket['id']];
foreach ($socket['channels'] as $channel_id => $channel)
{
unset($buffer); # Flush buffer
....
....