Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
bccdf5ff27 | ||
![]() |
ac1d806490 | ||
![]() |
f5ad810138 | ||
![]() |
d949663649 |
4 changed files with 10 additions and 8 deletions
2
.github/workflows/docker-publish.yml
vendored
2
.github/workflows/docker-publish.yml
vendored
|
@ -7,7 +7,7 @@ name: Docker
|
|||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '30 20 * * Sun'
|
||||
- cron: '00 11 * * Mon'
|
||||
push:
|
||||
branches: ["*"]
|
||||
# Publish semver tags as releases.
|
||||
|
|
|
@ -30,6 +30,11 @@ function getLocalOrPrivateIpInfo($ip)
|
|||
return 'link-local IPv6 access';
|
||||
}
|
||||
|
||||
// fc00::/7 Unique Local IPv6 Unicast Addresses
|
||||
if (preg_match('/^(fc|fd)([0-9a-f]{0,4}:){1,7}[0-9a-f]{1,4}$/i', $ip) === 1) {
|
||||
return 'ULA IPv6 access';
|
||||
}
|
||||
|
||||
// anything within the 127/8 range is localhost ipv4, the ip must start with 127.0
|
||||
if (strpos($ip, '127.') === 0) {
|
||||
return 'localhost IPv4 access';
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
<?php
|
||||
|
||||
error_reporting(0);
|
||||
header('Content-Type: application/json; charset=utf-8');
|
||||
|
||||
require_once 'telemetry_db.php';
|
||||
|
||||
/**
|
||||
|
@ -56,7 +53,7 @@ function formatSpeedtestData($speedtest)
|
|||
$speedtest = getSpeedtestUserById($_GET['id']);
|
||||
if (!is_array($speedtest)) {
|
||||
echo '{}';
|
||||
} else {
|
||||
$speedtest = formatSpeedtestData($speedtest);
|
||||
echo json_encode(array('timestamp'=>$speedtest['timestamp'],'download'=>$speedtest['dl'],'upload'=>$speedtest['ul'],'ping'=>$speedtest['ping'],'jitter'=>$speedtest['jitter'],'ispinfo'=>$speedtest['ispinfo']));
|
||||
}
|
||||
$speedtest = formatSpeedtestData($speedtest);
|
||||
|
||||
echo json_encode(array('timestamp'=>$speedtest['timestamp'],'download'=>$speedtest['dl'],'upload'=>$speedtest['ul'],'ping'=>$speedtest['ping'],'jitter'=>$speedtest['jitter'],'ispinfo'=>$speedtest['ispinfo']));
|
||||
|
|
|
@ -49,7 +49,7 @@ function Speedtest() {
|
|||
this._settings = {}; //settings for the speed test worker
|
||||
this._state = 0; //0=adding settings, 1=adding servers, 2=server selection done, 3=test running, 4=done
|
||||
console.log(
|
||||
"LibreSpeed by Federico Dossena v5.3.1 - https://github.com/librespeed/speedtest"
|
||||
"LibreSpeed by Federico Dossena v5.3.0 - https://github.com/librespeed/speedtest"
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue