• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/

Lines Matching defs:headers

157  * checkheaders() checks the linked list of custom HTTP headers for a
167 for(head = data->set.headers; head; head=head->next) {
427 * Curl_http_auth_act() gets called when all HTTP headers have been received
602 * Curl_http_output_auth() setups the authentication headers for the
687 * headers. They are dealt with both in the transfer.c main loop and in the
731 * headers have been received but then only to a single preferred method
821 /* We call this function on input Digest headers even if Digest
917 ** called after processing all the headers in a response
1246 * Pass headers WITH the colon.
1513 100-continue to the headers which actually speeds up post operations
1534 struct curl_slist *headers=conn->data->set.headers;
1536 while(headers) {
1537 ptr = strchr(headers->data, ':');
1551 checkprefix("Host:", headers->data))
1555 checkprefix("Content-Type:", headers->data))
1560 checkprefix("Content-Length", headers->data))
1565 checkprefix("Connection", headers->data))
1569 headers->data);
1576 ptr = strchr(headers->data, ';');
1593 headers->data);
1600 headers = headers->next;
1755 /* setup the authentication headers */
1871 /* When building Host: headers, we must put the host name within
2057 * A range is selected. We use different headers whether we're downloading
2058 * or uploading and we always let customized headers override our internal
2383 result = Curl_add_buffer(req_buffer, "\r\n", 2); /* end of headers */
2418 kinds of headers (Transfer-Encoding: chunked and Content-Length) */
2439 /* For really small posts we don't use Expect: headers at all, and for
2467 result = Curl_add_buffer(req_buffer, "\r\n", 2); /* end of headers! */
2508 result = Curl_add_buffer(req_buffer, "\r\n", 2); /* end of headers! */
2514 result = Curl_add_buffer(req_buffer, "\r\n", 2); /* end of headers! */
2805 /* headers are in network encoding so
2809 /* Zero-length header line means end of headers! */
2832 * However, we'll get more headers now so we must get
2862 * When all the headers have been parsed, see if we should give
2950 * really end-of-headers.
2968 Content-Length: headers if we are now receiving data
2999 /* We continue reading headers, so reset the line-based
3007 * Checks for special headers coming up.
3094 * response code yet as that depends on what other headers may
3119 we get one of those fancy headers that tell us the
3151 k->ignorecl = TRUE; /* ignore Content-Length headers */