mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-14 01:38:01 +08:00
Remove TLS custom_init() API
This commit is contained in:
parent
3f5fd89fd7
commit
aa6d8b4662
@ -3780,10 +3780,6 @@ 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->custom_init != NULL &&
|
||||
opts->custom_init(c, opts, tls) != 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));
|
||||
@ -3949,10 +3945,6 @@ 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->custom_init != NULL &&
|
||||
opts->custom_init(c, opts, tls) != 0) {
|
||||
mg_error(c, "TLS custom init failed");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (!s_initialised) {
|
||||
|
@ -930,7 +930,6 @@ 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 (*custom_init)(struct mg_connection *, struct mg_tls_opts *, void *tls);
|
||||
};
|
||||
|
||||
void mg_tls_init(struct mg_connection *, struct mg_tls_opts *);
|
||||
|
@ -11,7 +11,6 @@ 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 (*custom_init)(struct mg_connection *, struct mg_tls_opts *, void *tls);
|
||||
};
|
||||
|
||||
void mg_tls_init(struct mg_connection *, struct mg_tls_opts *);
|
||||
|
@ -58,10 +58,6 @@ 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->custom_init != NULL &&
|
||||
opts->custom_init(c, opts, tls) != 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));
|
||||
|
@ -28,10 +28,6 @@ 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->custom_init != NULL &&
|
||||
opts->custom_init(c, opts, tls) != 0) {
|
||||
mg_error(c, "TLS custom init failed");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (!s_initialised) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user