Changeset 874 for trunk/Modules/NetworkConfigRouterOS/RouterboardAPI.php
- Timestamp:
- Apr 6, 2020, 11:56:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkConfigRouterOS/RouterboardAPI.php
r873 r874 40 40 } else if ($Length >= 0x10000000) 41 41 $Length = chr(0xF0).chr(($Length >> 24) & 0xFF).chr(($Length >> 16) & 0xFF).chr(($Length >> 8) & 0xFF).chr($Length & 0xFF); 42 return ($Length);42 return $Length; 43 43 } 44 44 … … 71 71 sleep($this->Delay); 72 72 } 73 return ($this->Connected);73 return $this->Connected; 74 74 } 75 75 … … 234 234 $this->Write($el, $Last); 235 235 } 236 return ($this->Read());236 return $this->Read(); 237 237 } 238 238 }
Note:
See TracChangeset
for help on using the changeset viewer.