Files
esp-idf/examples/protocols/coap_client/main/Kconfig.projbuild
T

28 lines
1.0 KiB
Plaintext
Raw Normal View History

2019-04-13 12:15:28 +01:00
menu "Example CoAP Client Configuration"
2016-12-10 14:34:50 +08:00
config EXAMPLE_TARGET_DOMAIN_URI
string "Target Uri"
default "coaps://californium.eclipseprojects.io"
help
2019-04-13 12:15:28 +01:00
Target uri for the example to use. Use coaps:// prefix for encrypted traffic
using Pre-Shared Key (PSK) or Public Key Infrastructure (PKI).
config EXAMPLE_COAP_PSK_KEY
2019-04-13 12:15:28 +01:00
string "Preshared Key (PSK) to used in the connection to the CoAP server"
depends on COAP_MBEDTLS_PSK
default "sesame"
2019-04-13 12:15:28 +01:00
help
The Preshared Key to use to encrypt the communicatons. The same key must be
used at both ends of the CoAP connection, and the CoaP client must request
2019-04-13 12:15:28 +01:00
an URI prefixed with coaps:// instead of coap:// for DTLS to be used.
config EXAMPLE_COAP_PSK_IDENTITY
2019-04-13 12:15:28 +01:00
string "PSK Client identity (username)"
depends on COAP_MBEDTLS_PSK
default "password"
2019-04-13 12:15:28 +01:00
help
The identity (or username) to use to identify to the CoAP server which
PSK key to use.
endmenu