fastping.php 256 B

1234567891011
  1. <?php
  2. if (ubRouting::get('action') == 'fastping') {
  3. if (@$alterconf['FASTPING_ENABLED']) {
  4. $fastPing = new FastPing();
  5. $fastPing->repingDevices();
  6. die('OK:FASTPING');
  7. } else {
  8. die('ERROR:FASTPING_DISABLED');
  9. }
  10. }