Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

examples/mqttc: add option to use MBED TLS for connections #2643

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion examples/mqttc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
config EXAMPLES_MQTTC
tristate "Enable MQTT-C Example"
default n
depends on NETUTILS_MQTTC && !NETUTILS_MQTTC_WITH_MBEDTLS
depends on NETUTILS_MQTTC
---help---
Enable a simple MQTT-C publisher example

Expand All @@ -28,4 +28,12 @@ config EXAMPLES_MQTTC_RXSIZE
int "RX Buffer size"
default 256

config EXAMPLES_MQTTC_ALLOW_UNVERIFIED_TLS
bool "Allow unverified TLS"
default n
---help---
Do not fail TLS connection if certificate verification fails. Usually
this is useful during development when connection to server with
self-signed certificates

endif
Loading
Loading