Changeset 915 for trunk/Modules/NetworkConfigRouterOS/RouterboardAPI.php
- Timestamp:
- Dec 7, 2021, 9:56:09 PM (4 years ago)
- File:
- 
      - 1 edited
 
 
Legend:
- Unmodified
- Added
- Removed
- 
      trunk/Modules/NetworkConfigRouterOS/RouterboardAPI.phpr888 r915 10 10 public int $Port; // Port to connect to 11 11 public int $Timeout; // Connection attempt timeout and data read timeout 12 public int$Socket; // Variable for storing socket resource12 public $Socket; // Variable for storing socket resource 13 13 public bool $Debug; 14 14 public bool $SSL; // If SSL API connection is used. You need also change port to 8729 … … 23 23 $this->Debug = false; 24 24 $this->SSL = false; 25 } 26 27 function EncodeLength(int $Length): int 25 $this->ErrorNo = 0; 26 $this->ErrorStr = ""; 27 } 28 29 function EncodeLength(int $Length): string 28 30 { 29 31 if ($Length < 0x80) 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
