tcp_txfree()


지정한 TCP 세션의 송신 버퍼 여유 공간을 반환

Description

int tcp_txfree(int $tcp_id)

Parameters

Return Value

성공 시 송신 버퍼 여유 공간(바이트 수), 실패 시 0

Example

<?php
include "/lib/sn_tcp_ac.php";
$port = 1470;
tcp_server(0, $port);   // 0번 TCP로 접속 대기
$rbuf = "";
while(1)
{
  $rlen = tcp_read(0, $rbuf, tcp_txfree(0));   // TCP 송신 버퍼 여유 공간만큼 수신 데이터를 읽음
  if($rlen > 0)
    echo "$rbuf\r\n";     // 데이터 출력
}
?>

See also