Introduce custom TLS init function

This commit is contained in:
Sergey Lyubka 2021-12-14 13:04:11 +00:00
parent 755bf3c412
commit f43a5a005c
5 changed files with 14 additions and 0 deletions

View File

@ -3780,6 +3780,9 @@ void mg_tls_init(struct mg_connection *c, struct mg_tls_opts *opts) {
if (tls == NULL) {
mg_error(c, "TLS OOM");
goto fail;
} else if (opts->ifn != NULL && opts->ifn(opts) != 0) {
mg_error(c, "TLS custom init failed");
goto fail;
}
LOG(LL_DEBUG, ("%lu Setting TLS, CA: %s, CRL: %s, cert: %s, key: %s", c->id,
ca, crl, cert, certkey));
@ -3945,6 +3948,9 @@ void mg_tls_init(struct mg_connection *c, struct mg_tls_opts *opts) {
if (tls == NULL) {
mg_error(c, "TLS OOM");
goto fail;
} else if (opts->ifn != NULL && opts->ifn(opts) != 0) {
mg_error(c, "TLS custom init failed");
goto fail;
}
if (!s_initialised) {

View File

@ -930,6 +930,7 @@ struct mg_tls_opts {
const char *certkey; // Certificate key
const char *ciphers; // Cipher list
struct mg_str srvname; // If not empty, enables server name verification
int (*ifn)(struct mg_tls_opts *); // Custom init func. Return 0 on success
};
void mg_tls_init(struct mg_connection *, struct mg_tls_opts *);

View File

@ -11,6 +11,7 @@ struct mg_tls_opts {
const char *certkey; // Certificate key
const char *ciphers; // Cipher list
struct mg_str srvname; // If not empty, enables server name verification
int (*ifn)(struct mg_tls_opts *); // Custom init func. Return 0 on success
};
void mg_tls_init(struct mg_connection *, struct mg_tls_opts *);

View File

@ -58,6 +58,9 @@ void mg_tls_init(struct mg_connection *c, struct mg_tls_opts *opts) {
if (tls == NULL) {
mg_error(c, "TLS OOM");
goto fail;
} else if (opts->ifn != NULL && opts->ifn(opts) != 0) {
mg_error(c, "TLS custom init failed");
goto fail;
}
LOG(LL_DEBUG, ("%lu Setting TLS, CA: %s, CRL: %s, cert: %s, key: %s", c->id,
ca, crl, cert, certkey));

View File

@ -28,6 +28,9 @@ void mg_tls_init(struct mg_connection *c, struct mg_tls_opts *opts) {
if (tls == NULL) {
mg_error(c, "TLS OOM");
goto fail;
} else if (opts->ifn != NULL && opts->ifn(opts) != 0) {
mg_error(c, "TLS custom init failed");
goto fail;
}
if (!s_initialised) {