mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-09 22:58:09 +08:00
dcf1cedec9
SL requires cert and key to be separate files in DER format. Date verification is disabled for now. PUBLISHED_FROM=7d76150ed356140728a1e5fd82d8a0456347b7dc
22 lines
749 B
Markdown
22 lines
749 B
Markdown
---
|
|
title: "mg_set_ssl()"
|
|
decl_name: "mg_set_ssl"
|
|
symbol_kind: "func"
|
|
signature: |
|
|
const char *mg_set_ssl(struct mg_connection *nc, const char *cert,
|
|
const char *ca_cert);
|
|
---
|
|
|
|
Note: This function is deprecated, please use SSL options in mg_connect_opt.
|
|
|
|
Enable SSL for a given connection.
|
|
`cert` is a server certificate file name for a listening connection,
|
|
or a client certificate file name for an outgoing connection.
|
|
Certificate files must be in PEM format. Server certificate file
|
|
must contain a certificate, concatenated with a private key, optionally
|
|
concatenated with DH parameters.
|
|
`ca_cert` is a CA certificate, or NULL if peer verification is not
|
|
required.
|
|
Return: NULL on success, or error message on error.
|
|
|