onusigcompressor.php 273 B

1234567891011
  1. <?php
  2. if (ubRouting::get('action') == 'onusigcompressor') {
  3. if ($alterconf['PON_ENABLED']) {
  4. $onuSigCompressor=new ONUSigCompressor();
  5. $onuSigCompressor->run();
  6. die('ONUSIGCOMPRESSOR:OK');
  7. } else {
  8. die('ERROR:PON_DISABLED');
  9. }
  10. }