php-src/ext/sockets/tests/mcast_helpers.php.inc

9 lines
263 B
PHP
Raw Normal View History

<?php
function checktimeout($sock, $limit) {
$readfs = array($sock);
$writefs = $exceptfs = array();
if (socket_select($readfs, $writefs, $exceptfs, 0, $limit*1000) != 1) {
die("Socket read timeout hit. Can be a bug, a test bug, or a firewall issue.");
}
}