aboutsummaryrefslogtreecommitdiffstats
path: root/config/lightsquid/sqstat.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/lightsquid/sqstat.class.php')
-rw-r--r--config/lightsquid/sqstat.class.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/lightsquid/sqstat.class.php b/config/lightsquid/sqstat.class.php
index 5707e051..c596616d 100644
--- a/config/lightsquid/sqstat.class.php
+++ b/config/lightsquid/sqstat.class.php
@@ -202,8 +202,12 @@ class squidstat{
}
if ($connection) {
# username field is avaible in Squid 2.6 stable
+ # peer changed to remote in Squid 3.2 or later
+ # me changed to local in Squid 3.2 or later
if(substr($v,0,9) == "username ") $parsed["con"][$connection]["username"] = substr($v, 9);
+ if(substr($v,0,7) == "remote:") $parsed["con"][$connection]["peer"] = substr($v, 8);
if(substr($v,0,5) == "peer:") $parsed["con"][$connection]["peer"] = substr($v, 6);
+ if(substr($v,0,6) == "local:") $parsed["con"][$connection]["me"] = substr($v, 7);
if(substr($v,0,3) == "me:") $parsed["con"][$connection]["me"] = substr($v, 4);
if(substr($v,0,4) == "uri ") $parsed["con"][$connection]["uri"] = substr($v, 4);
if(substr($v,0,10) == "delay_pool") $parsed["con"][$connection]["delay_pool"] = substr($v, 11);
@@ -423,6 +427,7 @@ class squidstat{
else
# i use ip2long() to make ip sorting work correctly
if ($resolveip) {
+ echo $ip;
$hostname = gethostbyaddr($ip);
if ($hostname == $ip)
$ip = ip2long($ip); # resolve failed. use (ip2long) key