You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 17, 2021. It is now read-only.
Taken the CV LAN Modul from ekey sends in ipv4 only the binding should listen to udpv4 sockets but it rather starts listen on udpv6 only.
I did verified it using "netstat -plunt" and there i see it only listen to the port i have given in the udp6 part only.
I suggest to change:
openhab1-addons/bundles/binding/org.openhab.binding.ekey/src/main/java/org/openhab/binding/ekey/internal/EKeyPacketReceiver.java
Line 82
try { // create socket
socket = new DatagramSocket(port);
} catch (SocketException e) {
e.printStackTrace();
}
Possible Solution
uses DatagramSocket(int port, InetAddress laddr) with a local IPv4 Addre
Your Environment
openhabianpi
The text was updated successfully, but these errors were encountered:
Expected Behavior
Taken the CV LAN Modul from ekey sends in ipv4 only the binding should listen to udpv4 sockets but it rather starts listen on udpv6 only.
I did verified it using "netstat -plunt" and there i see it only listen to the port i have given in the udp6 part only.
I suggest to change:
openhab1-addons/bundles/binding/org.openhab.binding.ekey/src/main/java/org/openhab/binding/ekey/internal/EKeyPacketReceiver.java
Line 82
try { // create socket
socket = new DatagramSocket(port);
} catch (SocketException e) {
e.printStackTrace();
}
Possible Solution
uses DatagramSocket(int port, InetAddress laddr) with a local IPv4 Addre
Your Environment
openhabianpi
The text was updated successfully, but these errors were encountered: