Merge pull request #3275 from XuluniX/onvifprobe_interface
Fixed bug in onvifprobe interface selection
This commit is contained in:
commit
1b67074d35
|
@ -50,7 +50,7 @@ function execONVIF($cmd) {
|
||||||
|
|
||||||
function probeCameras($localIp) {
|
function probeCameras($localIp) {
|
||||||
$cameras = array();
|
$cameras = array();
|
||||||
$lines = @execONVIF('probe 1.1,1.2'.(isset($_REQUEST['interface']) ? ' '.isset($_REQUEST['interface']) : '' ));
|
$lines = @execONVIF('probe 1.1,1.2'.(isset($_REQUEST['interface']) ? ' '.$_REQUEST['interface'] : '' ));
|
||||||
if ( $lines ) {
|
if ( $lines ) {
|
||||||
foreach ( $lines as $line ) {
|
foreach ( $lines as $line ) {
|
||||||
$line = rtrim($line);
|
$line = rtrim($line);
|
||||||
|
|
Loading…
Reference in New Issue