ESP-IDF + 0/3 examples
SourceVu will show references to httpd_ssl_config from the following samples and libraries:
 
Symbols
loading (2/5)...
Files
loading (4/5)...
SummarySyntaxRelatedExamplesReferencesInstancesLifecycle

Fields

Field
Declared as
Description
Underlying HTTPD server config Parameters like task stack size and priority can be adjusted here.
const uint8_t *
Server certificate.
size_t
Server certificate byte length.
const uint8_t *
CA certificate ((CA used to sign clients, or client cert itself).
size_t
CA certificate byte length.
const uint8_t *
Private key.
size_t
Private key byte length.
bool
Use ECDSA peripheral to use private key.
uint8_t
The efuse block where ECDSA key is stored.
Transport Mode (default secure).
uint16_t
Port used when transport mode is secure (default 443).
uint16_t
Port used when transport mode is insecure (default 80).
bool
Enable tls session tickets.
bool
Enable secure element for server session.
User callback for esp_https_server.
void *
User data to add to the ssl context.
Certificate selection callback to use. The callback is only applicable when CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is enabled in menuconfig.
const char**
Application protocols the server supports in order of prefernece. Used for negotiating during the TLS handshake, first one the client supports is selected. The data structure must live as long as the https server itself.