diff --git a/obuspa/Makefile b/obuspa/Makefile index 06d3336f3..9c35a7400 100644 --- a/obuspa/Makefile +++ b/obuspa/Makefile @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=obuspa -PKG_VERSION:=10.0.0.8 +PKG_VERSION:=10.0.0.9 LOCAL_DEV:=0 ifneq ($(LOCAL_DEV),1) diff --git a/obuspa/files/etc/init.d/obuspa b/obuspa/files/etc/init.d/obuspa index 3a72f206e..278a0cae6 100755 --- a/obuspa/files/etc/init.d/obuspa +++ b/obuspa/files/etc/init.d/obuspa @@ -241,7 +241,8 @@ validate_mqtt_client_section() 'Password:string' \ 'ProtocolVersion:or("3.1", "3.1.1","5.0"):5.0' \ 'TransportProtocol:or("TCP/IP","TLS"):TCP/IP' \ - 'ClientID:string' + 'ClientID:string' \ + 'RequestResponseInfo:bool:1' } validate_challenge_section() @@ -602,7 +603,7 @@ configure_stomp_connection() { configure_mqtt_client() { local BrokerAddress BrokerPort Enable Username Password ProtocolVersion - local TransportProtocol ClientID + local TransportProtocol ClientID RequestResponseInfo local sec sec="${1}" @@ -627,6 +628,7 @@ configure_mqtt_client() { db_set "${BASEPATH}.ProtocolVersion" "${ProtocolVersion}" db_set "${BASEPATH}.TransportProtocol" "${TransportProtocol}" db_set "${BASEPATH}.ClientID" "${ClientID}" + db_set "${BASEPATH}.RequestResponseInfo" "${RequestResponseInfo}" }