Lines Matching refs:request

40  *   httpDelete()         - Send a DELETE request to the server.
41 * httpGet() - Send a GET request to the server.
42 * httpHead() - Send a HEAD request to the server.
43 * httpOptions() - Send an OPTIONS request to the server.
44 * httpPost() - Send a POST request to the server.
45 * httpPut() - Send a PUT request to the server.
46 * httpTrace() - Send an TRACE request to the server.
64 * http_send() - Send a request with all fields and the trailing
117 static int http_send(http_t *http, http_state_t request,
799 * 'httpDelete()' - Send a DELETE request to the server.
811 * 'httpGet()' - Send a GET request to the server.
823 * 'httpHead()' - Send a HEAD request to the server.
835 * 'httpOptions()' - Send an OPTIONS request to the server.
847 * 'httpPost()' - Send a POST request to the server.
861 * 'httpPut()' - Send a PUT request to the server.
875 * 'httpTrace()' - Send an TRACE request to the server.
963 * Prevent future reads for this request...
1930 DEBUG_puts("httpGetLength: chunked request!");
1978 * 'http_send()' - Send a request with all fields and the trailing blank line.
1983 http_state_t request, /* I - Request code */
2009 DEBUG_printf(("http_send(http=%p, request=HTTP_%s, uri=\"%s\")\n",
2010 http, codes[request], uri));
2042 * Send the request header...
2045 http->state = request;
2046 if (request == HTTP_POST || request == HTTP_PUT)
2059 if (httpPrintf(http, "%s %s HTTP/1.1\r\n", codes[request], buf) < 1)
2204 * request without interfering with the existing request data...
2210 * Send an OPTIONS request to the server, requiring SSL or TLS