mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-11-28 05:09:24 +01:00
30 lines
808 B
Plaintext
30 lines
808 B
Plaintext
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
|