Ignore:
Timestamp:
Jul 25, 2014, 9:12:10 PM (10 years ago)
Author:
chronos
Message:
  • Upraveno: Zobrazovat online stav zařízení a rozhraní.
  • Přidáno: Zobrazení bezdrátových spojení vztažených k rozhraní.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/NetworkConfigRouterOS/RouterboardAPI.php

    r674 r677  
    1212  var $Socket;             // Variable for storing socket resource
    1313  var $Debug;
     14  var $SSL; // If SSL API connection is used. You need also change port to 8729
    1415
    1516  function __construct()
     
    2122    $this->Timeout = 3;
    2223    $this->Debug = false;
     24    $this->SSL = false;
    2325  }
    2426
     
    4446  {
    4547    if($this->Connected) $this->Disconnect();
     48    if($this->SSL)
     49    {
     50        $IP = 'ssl://'.$IP;
     51    }
     52
    4653    $this->Socket = @fsockopen($IP, $this->Port, $this->ErrorNo, $this->ErrorStr, $this->Timeout);
    4754    if($this->Socket)
Note: See TracChangeset for help on using the changeset viewer.