Lines Matching refs:sock
57 $sock = stream_socket_accept($server);
58 if (!$sock) {
66 stream_set_blocking($sock, false);
67 while (!feof($sock)) {
69 list($r, $w, $e) = array(array($sock), null, null);
72 $line = stream_get_line($sock, 8192, "\r\n");
84 stream_set_blocking($sock, true);
89 stream_copy_to_stream($sock, $output, $content_length);
95 stream_copy_to_stream($fd, $sock);
97 fclose($sock);
109 $sock = stream_socket_accept($server);
110 if (!$sock) {
116 fclose($sock);