1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

* modules/ssl/ssl_util_ocsp.c (send_request,

modssl_dispatch_ocsp_request): Take timeout as argument, as pass through.
  
* modules/ssl/ssl_engine_ocsp.c (verify_ocsp_status): Pass server timeout
  to modssl_dispatch_ocsp_request.

Submitted by: Dr Stephen Henson <shenson oss-institute.org>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@815719 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joe Orton
2009-09-16 10:56:31 +00:00
parent 8c13e8877c
commit 229ca83b8f
3 changed files with 10 additions and 5 deletions

View File

@@ -141,7 +141,9 @@ static int verify_ocsp_status(X509 *cert, X509_STORE_CTX *ctx, conn_rec *c,
request = create_request(ctx, cert, &certID, s, pool);
if (request) {
response = modssl_dispatch_ocsp_request(ruri, request, c, pool);
response = modssl_dispatch_ocsp_request(ruri,
mySrvFromConn(c)->timeout,
request, c, pool);
}
if (!request || !response) {