esp_tls_conn_new_sync() function
Create a new blocking TLS/SSL connection This function establishes a TLS/SSL connection with the specified host in blocking manner.
Arguments
hostname
Hostname of the host.
hostlen
Length of hostname.
port
Port number of the host.
cfg
TLS configuration as esp_tls_cfg_t. If you wish to open non-TLS connection, keep this NULL. For TLS connection, a pass pointer to esp_tls_cfg_t. At a minimum, this structure should be zero-initialized.
tls
Pointer to esp-tls as esp-tls handle.
Return value
- -1 If connection establishment fails. - 1 If connection establishment is successful. - 0 If connection state is in progress.