mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-09 14:15:37 +08:00
23122b327c
It would be probably good idea to also remove tools/docgen.py and asciidoc.mk, but asciidoc.mk is still mentioned under `cloud/doc`, which may contain some useful info which we'll need at least to review before removing. PUBLISHED_FROM=faf454d4c52a2f07ea8ac084cf0bd11a0c9c9b3b
668 B
668 B
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_set_ssl() | mg_set_ssl | func | const char *mg_set_ssl(struct mg_connection *nc, const char *cert, const char *ca_cert); |
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 parameters.
ca_cert
is a CA certificate, or NULL if peer verification is not
required.
Return: NULL on success, or error message on error.