download this file: class.socket.http-view.php view text/plain: class.socket.http-view.php file encoding: UTF-8 [goback]
<?php
echo "<pre>";
echo "<table border=1><tr><td>";
echo "RTT<BR>\n";
$files = glob("data.rtt/*.rtt.txt");
foreach($files AS $f)
{
$ip = preg_replace(';^data\.rtt/([\d.]+)\.rtt\.txt$;','\\1',$f);
echo "<a href='$f' target=_blank>$ip</a><BR>\n";
}
echo "</td><td>";
echo "URL<BR>\n";
$files = glob("data.url/*.url.txt");
foreach($files AS $f)
{
$ip = preg_replace(';^data\.url/([\d.]+)\.url\.txt$;','\\1',$f);
echo "<a href='$f' target=_blank>$ip</a><BR>\n";
}
echo "</td></tr></table>";
?>