Commit f30c7b75 authored by Evelyn's avatar Evelyn Committed by GitHub

Update mg_set_ssl.md

parent c5b8e55e
...@@ -7,15 +7,15 @@ signature: | ...@@ -7,15 +7,15 @@ signature: |
const char *ca_cert); const char *ca_cert);
--- ---
Note: This function is deprecated, please use SSL options in mg_connect_opt. Note: This function is deprecated. Please, use SSL options in mg_connect_opt.
Enable SSL for a given connection. Enables SSL for a given connection.
`cert` is a server certificate file name for a listening connection, `cert` is a server certificate file name for a listening connection
or a client certificate file name for an outgoing connection. or a client certificate file name for an outgoing connection.
Certificate files must be in PEM format. Server certificate file The certificate files must be in PEM format. The server certificate file
must contain a certificate, concatenated with a private key, optionally must contain a certificate, concatenated with a private key, optionally
concatenated with DH parameters. concatenated with DH parameters.
`ca_cert` is a CA certificate, or NULL if peer verification is not `ca_cert` is a CA certificate or NULL if peer verification is not
required. required.
Return: NULL on success, or error message on error. Return: NULL on success or error message on error.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment