mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-11-05 17:11:41 +01:00
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
menu "Host-test config"
|
|
|
|
config GCOV_ENABLED
|
|
bool "Coverage analyzer"
|
|
default n
|
|
help
|
|
Enables coverage analyzing for host tests.
|
|
|
|
config WEBSOCKET_URI
|
|
string "Websocket endpoint URI"
|
|
default "wss://echo.websocket.org"
|
|
help
|
|
URL of websocket endpoint this example connects to and sends echo
|
|
|
|
config WS_OVER_TLS_SERVER_AUTH
|
|
bool "Enable WebSocket over TLS with Server Certificate Verification Only"
|
|
default y
|
|
help
|
|
Enables WebSocket connections over TLS (WSS) with server certificate verification.
|
|
The client verifies the server certificate; the server does not require a client certificate.
|
|
|
|
config WS_OVER_TLS_MUTUAL_AUTH
|
|
bool "Enable WebSocket over TLS with Server Client Mutual Authentification"
|
|
default n
|
|
help
|
|
Enables WebSocket connections over TLS (WSS) with server and client mutual certificate verification.
|
|
|
|
config WS_OVER_TLS_SKIP_COMMON_NAME_CHECK
|
|
bool "Skip common name(CN) check during TLS authentification"
|
|
default n
|
|
help
|
|
Skip Common Name (CN) check during TLS (WSS) authentication. Use only for testing.
|
|
|
|
endmenu
|