mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
sslc does not currently support RAND_egd or RAND_status
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94207 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -462,8 +462,12 @@ const char *ssl_cmd_SSLRandomSeed(cmd_parms *cmd, void *ctx,
|
||||
seed->cpPath = ap_server_root_relative(mc->pPool, arg2+5);
|
||||
}
|
||||
else if ((arg2len > 4) && strEQn(arg2, "egd:", 4)) {
|
||||
#ifdef HAVE_SSL_RAND_EGD
|
||||
seed->nSrc = SSL_RSSRC_EGD;
|
||||
seed->cpPath = ap_server_root_relative(mc->pPool, arg2+4);
|
||||
#else
|
||||
return "egd not supported with this SSL toolkit";
|
||||
#endif
|
||||
}
|
||||
else if (strcEQ(arg2, "builtin")) {
|
||||
seed->nSrc = SSL_RSSRC_BUILTIN;
|
||||
|
Reference in New Issue
Block a user