Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
BINRPC changed to XMLRPC protocol due to CCU firmware 3.41.x (#6452)
Browse files Browse the repository at this point in the history
Signed-off-by: Gerhard Riegler <gerhard.riegler@gmail.com>
  • Loading branch information
gerrieg authored and kaikreuzer committed Nov 5, 2018
1 parent 01aeee6 commit e7b0c78
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,16 +152,16 @@ public void initialize() throws IOException {
} else if (gatewayInfo.isCCU()) {
// CCU
if (gatewayInfo.isRfInterface()) {
availableInterfaces.put(HmInterface.RF, TransferMode.BIN_RPC);
availableInterfaces.put(HmInterface.RF, TransferMode.XML_RPC);
}
if (gatewayInfo.isWiredInterface()) {
availableInterfaces.put(HmInterface.WIRED, TransferMode.BIN_RPC);
availableInterfaces.put(HmInterface.WIRED, TransferMode.XML_RPC);
}
if (gatewayInfo.isHmipInterface()) {
availableInterfaces.put(HmInterface.HMIP, TransferMode.XML_RPC);
}
if (gatewayInfo.isCuxdInterface()) {
availableInterfaces.put(HmInterface.CUXD, TransferMode.BIN_RPC);
availableInterfaces.put(HmInterface.CUXD, TransferMode.XML_RPC);
}
if (gatewayInfo.isGroupInterface()) {
availableInterfaces.put(HmInterface.GROUP, TransferMode.XML_RPC);
Expand Down

0 comments on commit e7b0c78

Please sign in to comment.