mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2958
This commit is contained in:
parent
b2bf1bfc9f
commit
e8c3db3869
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
require_once("../inc/db.inc");
|
||||
|
||||
db_init();
|
||||
$hostid = $_GET["hostid"];
|
||||
|
||||
if (!$hostid) {
|
||||
echo "no host ID\n";
|
||||
exit();
|
||||
}
|
||||
|
||||
mysql_query("update host set rpc_time=0 where id=$hostid");
|
||||
echo "Host RPC time cleared\n";
|
||||
|
||||
?>
|
Loading…
Reference in New Issue