Extend SSL_CONF

Extend SSL_CONF to return command value types.

Add certificate and key options.

Update documentation.
This commit is contained in:
Dr. Stephen Henson
2013-10-18 16:09:12 +01:00
parent 13af145159
commit ec2f7e568e
5 changed files with 193 additions and 41 deletions

View File

@@ -1685,6 +1685,12 @@ int args_ssl_call(SSL_CTX *ctx, BIO *err, SSL_CONF_CTX *cctx,
}
}
#endif
if (!SSL_CONF_CTX_finish(cctx))
{
BIO_puts(err, "Error finishing context\n");
ERR_print_errors(err);
return 0;
}
return 1;
}