Получение свободного пространства буфера назначенного веб-сокета TX-буфера сеанса TCP
int ws_txfree(int $tcp_id)
В случае успеха вернется свободная длина TX-буфера сеанса TCP через веб-сокет, в противном случае - 0
<?php
include "/lib/sn_tcp_ws.php";
$rwbuf = "";
// configuring a websocket and waiting for a connection
ws_setup(0, "my_path", "my_proto");
while(1)
{
if(ws_state(0) == TCP_CONNECTED)
{
// Reading the data as many as the websocket TX buffer free or less
$rwlen = ws_read(0, $rwbuf, ws_txfree(0));
if($rwlen > 0)
ws_write(0, $rwbuf); // transmitting the received data
}
sleep(1);
}
?>