mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-07 16:59:18 +00:00
98_GAEBUS.pm : fix hardcoded port in OpenDev
git-svn-id: https://svn.fhem.de/fhem/trunk@18757 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
1a0f607309
commit
b3d56dd09d
@ -46,6 +46,7 @@
|
||||
# 13.12.2017 : A.Goebel : add "+f" as additional ebus command to disable "-f" for this request
|
||||
# 03.01.2019 : A.Goebel : fix mask tilde in set/get
|
||||
# 03.01.2019 : A.Goebel : fix change regexp for parsing commands from "/^w$delimiter.{1,7}$delimiter.*/" to "/^w$delimiter[^$delimiter]{1,}$delimiter.*/" to support "feuerung" as class
|
||||
# 28.02.2019 : A.Goebel : fix port 8888 was hardcoded in GAEBUS_OpenDev, use $port instead (highlighted by user freetz)
|
||||
|
||||
package main;
|
||||
|
||||
@ -630,7 +631,7 @@ GAEBUS_OpenDev($$)
|
||||
|
||||
my $conn = new IO::Socket::INET (
|
||||
PeerAddr => "$host",
|
||||
PeerPort => '8888',
|
||||
PeerPort => "$port",
|
||||
Proto => 'tcp',
|
||||
Reuse => 0,
|
||||
Timeout => 10
|
||||
|
Loading…
x
Reference in New Issue
Block a user