mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-01-28 01:47:19 +01:00
A separate OBUSPA_ENABLE_TEST_CONTROLLER_LOCAL configuration is added which can be used by for example usp-js to accomplish local MQTT broker setup but without compromising security by enabling remote access. Appropriate dependencies are also added. In addition unnecessary uci_load commands and misspelled and unnecessary require_certificates mosquitto option are removed.
59 lines
1.4 KiB
Text
59 lines
1.4 KiB
Text
if PACKAGE_obuspa
|
|
config OBUSPA_MTP_ENABLE_MQTT
|
|
bool "Enable MQTT as mtp protocol"
|
|
default y
|
|
|
|
config OBUSPA_MTP_ENABLE_WEBSOCKETS
|
|
bool "Enable WebSockets as mtp protocol"
|
|
default y
|
|
|
|
config OBUSPA_MTP_ENABLE_STOMP
|
|
bool "Enable STOMP as mtp protocol"
|
|
default y
|
|
|
|
config OBUSPA_MTP_ENABLE_COAP
|
|
bool "Enable CoAP as mtp protocol"
|
|
default y
|
|
|
|
config OBUSPA_CONTROLLER_MTP_VERIFY
|
|
bool "Enable verification of controller MTP before processing the message"
|
|
default n
|
|
|
|
config OBUSPA_ENABLE_TEST_CONTROLLER
|
|
bool "Adds a test controller by default"
|
|
default n
|
|
select OBUSPA_ENABLE_TEST_CONTROLLER_LOCAL
|
|
|
|
config OBUSPA_ENABLE_TEST_CONTROLLER_LOCAL
|
|
bool "Adds a test controller by default (local access only)"
|
|
default n
|
|
|
|
config OBUSPA_MAX_CONTROLLERS_NUM
|
|
int "The maximum number of controllers to be supported"
|
|
range 1 10
|
|
default 5
|
|
help
|
|
This value must be in range of 1 to 10. (default 5)
|
|
|
|
config OBUSPA_DOWNLOAD_EXTENSION
|
|
bool "Adds Device.LocalAgent.X_IOPSYS_EU_Download()"
|
|
default y
|
|
help
|
|
Adds Device.LocalAgent.X_IOPSYS_EU_Download() operate command
|
|
for local file download to cpe
|
|
|
|
config OBUSPA_UPLOAD_EXTENSION
|
|
bool "Adds Device.LocalAgent.X_IOPSYS_EU_Upload()"
|
|
default y
|
|
help
|
|
Adds Device.LocalAgent.X_IOPSYS_EU_Upload() operate command
|
|
for pull a file from cpe
|
|
|
|
config OBUSPA_SESSION_EXTENSION
|
|
bool "Adds Device.LocalAgent.X_IOPSYS_EU_Session."
|
|
default y
|
|
help
|
|
Adds Device.LocalAgent.X_IOPSYS_EU_Session. object to simulate
|
|
a CWMP like session
|
|
|
|
endif
|