tcp_state()


지정한 TCP 세션의 상태를 반환

Description

int tcp_state(int $tcp_id)

Parameters

Return Value

TCP 세션 상태를 나타내는 정수 값(TCP_CLOSED, TCP_CONNECTED 또는 TCP_LISTEN)

Example

<?php
include "/lib/sn_tcp_ac.php";
$port = 1470;
tcp_server(0, $port);   // 0번 TCP로 접속 대기
$rbuf = "";
while(tcp_state(0) != TCP_CONNECTED)
  ;
echo "TCP connected!\r\n";
?>

See also