Searched refs:request (Results 1 - 19 of 19) sorted by relevance

/httpd/modules/lua/test/
H A Dhelpers.lua10 return http.request(base_url .. uri)
29 return http.request(base_url .. uri, flat)
/httpd/support/
H A Dlog_server_status.in35 my $request = "/server-status/?auto"; # Request to send
65 "GET $request HTTP/1.1\r\nHost: $server\r\nConnection: close\r\n\r\n\r\n";
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...]
H A Dapxs.in742 ** you immediately can request the URL /%NAME% and watch for the
/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_private.h433 NON_SSL_OK = 0, /* is SSL request, or error handling completed */
870 /* ssl_io_buffer_fill fills the setaside buffering of the HTTP request
971 /* OCSP helper interface; dispatches the given OCSP request to the
977 OCSP_REQUEST *request,
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/modules/echo/
H A Dmod_echo.c118 apr_cpystrn(ws->request, "ECHO ", sizeof(ws->request));
123 brigade_peek(last_echoed, ws->request + sizeof("ECHO ") - 1,
124 sizeof(ws->request) - sizeof("ECHO ") + 1);
/httpd/modules/lua/test/htdocs/
H A Dconfig_tests.lua30 r:puts("hello from request scope " .. count)
35 r:puts("hello from request scope " .. count)
/httpd/server/
H A Dscoreboard.c497 copy_request(ws->request, sizeof(ws->request), r);
507 ws->request[0]='\0';
601 dest->request[sizeof(dest->request) - 1] = '\0';
/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/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/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/modules/generators/
H A Dmod_status.c514 ap_rputs("/request", r);
784 ws_record->request)),
871 ws_record->request)));
889 "<tr><th>SS</th><td>Seconds since beginning of most recent request</td></tr>\n \
890 <tr><th>Req</th><td>Milliseconds required to process most recent request</td></tr>\n \
/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
H A Dmod_proxy_html.c840 errmsg = "Non-proxy request; not inserting proxy-html filter";
/httpd/modules/dav/main/
H A Dmod_dav.h1271 dav_lockdb *lockdb, dav_lock *request,
1359 * The request storage pool should be associated with the lockdb,
1684 request_rec *r; /* original request */
1747 * respond to the GET request, then free the resource copy.
1751 /* Get a resource descriptor for the URI in a request. A descriptor
1770 * The provider may associate the request storage pool with the resource
1826 ** request pool to get this closed and cleaned up.
1858 ** rather than via a sub-request (on get_pathname), then this function
1863 ** handle a HEAD request.
1965 /* Get the request re
[all...]
/httpd/modules/lua/
H A Dlua_request.c125 /* ------------------ request methods -------------------- */
409 * lua_ap_requestbody; r:requestbody([filename]) - Reads or stores the request
1297 lua_pushstring(L, "request");
1298 lua_pushstring(L, ws_record->request);
1416 * root for the request
1576 * @param r The request
1678 * Set the keepalive status for this request
1679 * @param r The current request
1697 * @param r The current request
1721 * @param r The request
[all...]

Completed in 734 milliseconds