esp_tls_conn_new_async() function
Create a new non-blocking TLS/SSL connection This function initiates a non-blocking TLS/SSL connection with the specified host, but due to its non-blocking nature, it doesn't wait for the connection to get established.
Arguments
hostname
Hostname of the host.
hostlen
Length of hostname.
port
Port number of the host.
cfg
TLS configuration as esp_tls_cfg_t. `non_block` member of this structure should be set to be true.
tls
pointer to esp-tls as esp-tls handle.
Return value
- -1 If connection establishment fails. - 0 If connection establishment is in progress. - 1 If connection establishment is successful.