Kconfig.projbuild 1.0 KB

123456789101112131415161718192021222324252627
  1. menu "Example CoAP Client Configuration"
  2. config EXAMPLE_TARGET_DOMAIN_URI
  3. string "Target Uri"
  4. default "coaps://californium.eclipseprojects.io"
  5. help
  6. Target uri for the example to use. Use coaps:// prefix for encrypted traffic
  7. using Pre-Shared Key (PSK) or Public Key Infrastructure (PKI).
  8. config EXAMPLE_COAP_PSK_KEY
  9. string "Preshared Key (PSK) to used in the connection to the CoAP server"
  10. depends on COAP_MBEDTLS_PSK
  11. default "sesame"
  12. help
  13. The Preshared Key to use to encrypt the communicatons. The same key must be
  14. used at both ends of the CoAP connection, and the CoaP client must request
  15. an URI prefixed with coaps:// instead of coap:// for DTLS to be used.
  16. config EXAMPLE_COAP_PSK_IDENTITY
  17. string "PSK Client identity (username)"
  18. depends on COAP_MBEDTLS_PSK
  19. default "password"
  20. help
  21. The identity (or username) to use to identify to the CoAP server which
  22. PSK key to use.
  23. endmenu