Searched defs:request (Results 1 - 8 of 8) sorted by relevance

/httpd/modules/ssl/
H A Dssl_engine_ocsp.c102 /* Create an OCSP request for the given certificate; returning the
104 * request object on success, or NULL on error. */
136 OCSP_REQUEST *request = NULL; local
145 request = create_request(ctx, cert, &certID, s, pool, sc);
146 if (request) {
150 response = modssl_dispatch_ocsp_request(ruri, to, request, c, pool);
153 if (!request || !response) {
179 OCSP_check_nonce(request, basicResponse) != 1) {
243 if (request) OCSP_REQUEST_free(request);
[all...]
H A Dssl_util_ocsp.c28 /* Serialize an OCSP request which will be sent to the responder at
41 "Content-Type: application/ocsp-request\r\n"
56 /* Send the OCSP request serialized into BIO 'request' to the
59 static apr_socket_t *send_request(BIO *request, const apr_uri_t *uri, argument
102 /* send the request and get a response */
104 "sending request to OCSP responder");
106 while ((len = BIO_read(request, buf, sizeof buf)) > 0) {
121 "failed to send request to OCSP responder '%s'",
286 OCSP_REQUEST *request,
284 modssl_dispatch_ocsp_request(const apr_uri_t *uri, apr_interval_time_t timeout, OCSP_REQUEST *request, conn_rec *c, apr_pool_t *p) argument
[all...]
H A Dssl_engine_kernel.c44 /* Perform an upgrade-to-TLS for the given request, per RFC 2817. */
94 * filters for the given request, to determine whether there is any
152 * with using SSL on this request.
169 * Perform SNI checks only on the initial request. In particular,
196 " provided in HTTP request", servername);
239 "%s HTTPS request received for child %ld (server %s)",
389 * sub-request processing the client could force additional handshakes,
606 /* If we're handling a request for a vhost other than the default one,
648 * request includes a message body (and the client has not
650 * streaming the request bod
1649 ssl_session_log(server_rec *s, const char *request, unsigned char *id, unsigned int idlen, const char *status, const char *result, long timeout) argument
[all...]
/httpd/include/
H A Dscoreboard.h51 * the current, or most recent, request.
59 #define SERVER_BUSY_READ 3 /* Reading a client request */
60 #define SERVER_BUSY_WRITE 4 /* Processing a client request */
62 #define SERVER_BUSY_LOG 6 /* Logging the request */
65 #define SERVER_GRACEFUL 9 /* server is gracefully finishing request */
116 char request[64]; /* We just want an idea... */ member in struct:worker_score
/httpd/modules/filters/
H A Dmod_request.c18 * mod_request.c --- HTTP routines to set aside or process request bodies.
178 * been removed from the body during storage. We need to change the request
198 * If a body has been previously kept by the request, and if a subrequest wants
199 * to re-insert the body into the request, this input filter makes it happen.
288 * Add the KEEP_BODY filter to the request, if the admin wants to keep
294 * @param r The request
317 * Remove the kept_body and keep body filters from this specific request.
371 "Maximum size of request bodies kept aside for use by filters"),
388 AP_DECLARE_MODULE(request) = { variable
/httpd/modules/debugging/
H A Dmod_firehose.c25 * A request and response sniffer for Apache v2.x. It logs
79 request_enum request; member in struct:firehose_conn_t
338 * Create a firehose for each main request.
355 if (ctx->conn->request == FIREHOSE_REQUEST) {
371 if (ctx->conn->request == FIREHOSE_REQUEST) {
399 * TODO: For the request firehose, have an option to set aside request buckets
400 * until we decide whether we're going to record this request or not. Allows for
405 * whether to include the request or not. Using this, we can react to the value
490 conn->request
541 firehose_enable_connection(cmd_parms *cmd, const char *arg1, const char *arg2, proxy_enum proxy, direction_enum direction, request_enum request) argument
[all...]
/httpd/modules/proxy/
H A Dmod_serf.c83 "serf: request returned: %d", ctx->rstatus);
244 static serf_bucket_t* accept_response(serf_request_t *request, argument
252 /* get the per-request bucket allocator */
253 bkt_alloc = serf_request_get_alloc(request);
261 static apr_status_t handle_response(serf_request_t *request, argument
352 static apr_status_t setup_request(serf_request_t *request, argument
366 serf_request_get_alloc(request));
417 * the main request, so that we can cleanup safely and remove our events
527 /* TODO: create custom serf bucket, which does async request body reads */
536 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01130) "Unable to create temp request bod
[all...]
/httpd/support/
H A Dab.c77 ** Introduces four 'if (int == value)' tests per non-ssl request.
237 int keepalive; /* non-zero if a keep-alive request */
254 apr_interval_time_t waittime; /* between request and reading response */
271 int send_body = 0; /* non-zero if sending body with request */
342 /* global request (and its length) */
344 char *request = _request; variable
355 struct data *stats; /* data for each request */
478 /* write out request to a connection - assumes we can write
479 * (small) request out in one go into our new socket buffer
729 printf("Send request time
[all...]

Completed in 51 milliseconds