웹 소켓 세션의 송신 버퍼 여유 공간을 반환
int ws_txfree(int $tcp_id)
성공 시 송신 버퍼 여유 공간(바이트 수), 실패 시 0
<?php
include "/lib/sn_tcp_ws.php";
$rwbuf = "";
ws_setup(0, "my_path", "my_proto"); // 웹 소켓 서버 설정 및 접속 대기
while(1)
{
if(ws_state(0) == TCP_CONNECTED)
{
$rwlen = ws_read(0, $rwbuf, ws_txfree(0)); // 송신 버퍼 여유 공간만큼 수신 데이터를 읽기
if($rwlen > 0)
ws_write(0, $rwbuf); // 수신한 데이터를 그대로 송신
}
sleep(1);
}
?>