php-src/ext/sockets/tests/mcast_helpers.php.inc
Gustavo André dos Santos Lopes bc9c089f3a - Fixed ext/sockets build on Mac OS X (hopefully).
- Improvements in the multicast tests.
- Very light refactoring in sockets.c.
2011-06-11 20:20:50 +00:00

9 lines
263 B
PHP

<?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.");
}
}