This commit is contained in:
redmatrix 2016-05-19 16:48:10 -07:00
parent fc239cb8a2
commit 6e7d7c5017
2 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,8 @@ function phpiniSizeToBytes($val) {
$val *= 1024;
case 'k':
$val *= 1024;
default:
break;
}
return (int)$val;

View File

@ -3,6 +3,9 @@
require_once('include/cli_startup.php');
require_once('include/zot.php');
// CLI utility
// performs zot_finger on $argv[1], which is a hex_encoded webbie/reddress
function gprobe_run($argc,$argv){
cli_startup();