diff options
author | Remy <relst@relst.nl> | 2015-04-12 15:14:25 +0200 |
---|---|---|
committer | Remy <relst@relst.nl> | 2015-04-12 15:14:25 +0200 |
commit | a7690e83a90a9e68c4bc74bf03f8b50d2261377c (patch) | |
tree | 27a2c55e9b300fc1641a768ae34e8cc5d024016b /functions/json.php | |
parent | 225ba54913c49cfeca7e3afa7d2e9af128a344a7 (diff) | |
download | ssl-decoder-a7690e83a90a9e68c4bc74bf03f8b50d2261377c.zip ssl-decoder-a7690e83a90a9e68c4bc74bf03f8b50d2261377c.tar.gz ssl-decoder-a7690e83a90a9e68c4bc74bf03f8b50d2261377c.tar.bz2 |
fix long duration and possible timeout of non-http/s tests
Diffstat (limited to 'functions/json.php')
-rw-r--r-- | functions/json.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/json.php b/functions/json.php index 26058a6..8e6dc97 100644 --- a/functions/json.php +++ b/functions/json.php @@ -45,9 +45,9 @@ function check_json($host,$port) { $chain_key = (string)$key+1; if ($key == 0) { $data["connection"] = ssl_conn_metadata_json($host, $port, $read_stream, $chain_data); - $data["chain"][$chain_key] = cert_parse_json($curr, $next, $host, true); + //$data["chain"][$chain_key] = cert_parse_json($curr, $next, $host, true); } else { - $data["chain"][$chain_key] = cert_parse_json($curr, $next, null, false); + //$data["chain"][$chain_key] = cert_parse_json($curr, $next, null, false); } } } else { |