Files
esp-protocols/components/mosquitto/examples/broker/main/Kconfig.projbuild

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
808 B
Plaintext
Raw Normal View History

menu "Example Configuration"
config EXAMPLE_BROKER_HOST
string "Broker host address"
default "0.0.0.0"
help
Host name of the endpoint to bind the mosquitto listener.
config EXAMPLE_BROKER_PORT
int "Broker port"
default 1883
help
Port of the endpoint to bind the mosquitto listener
config EXAMPLE_BROKER_RUN_LOCAL_MQTT_CLIENT
bool "Run a local mqtt client"
default y
help
If enabled, it runs a local mqtt client connecting
to the same endpoint ans the broker listens to
config EXAMPLE_BROKER_WITH_TLS
bool "Use TLS"
default y
help
If enabled, the broker (and the client too, if enabled)
uses TLS transport layer
endmenu