You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
828 B
Django/Jinja
36 lines
828 B
Django/Jinja
<?php
|
|
require('func.php');
|
|
|
|
function fastdGetPeers($file) {
|
|
if (($sock = socket_create(AF_UNIX, SOCK_STREAM, NULL)) === false) {
|
|
echo "socket_create() fehlgeschlagen: Grund: " . socket_strerror(socket_last_error()) . "\n";
|
|
}
|
|
|
|
if (($result = socket_connect($sock, $file)) === false) {
|
|
echo "socket_connect() fehlgeschlagen.\nGrund: ($result) " . socket_strerror(socket_last_error($sock)) . "\n";
|
|
}
|
|
|
|
$json = "";
|
|
#stream_set_timeout($sock, 5);
|
|
while ($out = socket_read($sock, 2048)) {
|
|
$json .= $out;
|
|
}
|
|
|
|
$json = json_decode($json);
|
|
|
|
$peers = 0;
|
|
foreach($json->peers as $peer) {
|
|
if($peer->connection != NULL) $peers++;
|
|
}
|
|
|
|
return $peers;
|
|
}
|
|
|
|
$fastd_1280 = fastdGetPeers('/run/ffmyk.socket');
|
|
|
|
$data = 'fastdclient,mtu=1280,host={{ ansible_hostname }},type=backend value='.$fastd_1280."\n";
|
|
|
|
sendflux($data);
|
|
|
|
?>
|