Home
last modified time | relevance | path

Searched refs:response (Results 26 – 50 of 275) sorted by relevance

1234567891011

/curl/docs/cmdline-opts/
H A Dretry-all-errors.md34 By default curl does not return error for transfers with an HTTP response code
37 not an error. When --retry is used then curl retries on some HTTP response
39 response codes such as 404. If you want to retry on all response codes that
H A Dsuppress-connect-headers.md5 Help: Suppress proxy CONNECT response headers
20 CONNECT response headers. This option is meant to be used with --dump-header
H A Dexpect100-timeout.md20 response when curl emits an Expects: 100-continue header in its request. By
22 stops waiting, it continues as if a response was received.
H A Dcompressed.md5 Help: Request compressed response
18 Request a compressed response using one of the algorithms curl supports, and
H A Drange.md44 (*) = NOTE that these make the server reply with a multipart response, which
45 is returned as-is by curl! Parsing or otherwise transforming this response is
50 server's response is unspecified, depending on the server's configuration.
/curl/tests/data/
H A Dtest15116 This contains a response code >= 400, so curl shouldn't display this. Even
17 though it's a response code that triggers authentication, we're not using
H A Dtest143033 HTTP GET with negative response code
51 # Due to invalid HTTP response code
H A Dtest15217 This contains a response code >= 400, so curl shouldn't display this. Even
18 though it's a response code that triggers authentication, we're not using
H A Dtest10333 # This case with an unexpected 1xx response used to cause a "hang" before the fix
40 HTTP GET with 102 response!
H A Dtest147934 HTTP/1.1 response followed by an HTTP/0.9 response over the same connection
H A Dtest128685 # - Remove the unique value from response if in RFC format
89 …= $1 . join(', ', map { s/^(cnonce=)"[a-zA-Z0-9+\/=]+"$/$1REMOVED/; s/^(response=)"[a-f0-9]{32}"$/…
99 …=REMOVED, nc=00000001, nonce="1053604144", qop=auth, realm="testrealm", response=REMOVED, uri="/%T…
105 …=REMOVED, nc=00000002, nonce="1053604144", qop=auth, realm="testrealm", response=REMOVED, uri="/%T…
H A Dtest49835 Reject too large HTTP response headers on endless redirects
45 # curl: (56) Too large response headers: 6144086 > 6144000
H A Dtest49734 Reject too large accumulated HTTP response headers
51 # curl: (56) Too large response headers: 307215 > 307200
/curl/docs/libcurl/opts/
H A DCURLOPT_SERVER_RESPONSE_TIMEOUT.md23 CURLOPT_SERVER_RESPONSE_TIMEOUT - time allowed to wait for server response
37 amount of time that the server is allowed to take in order to send a response
39 waiting for a response, this value overrides CURLOPT_TIMEOUT(3). It is
H A DCURLOPT_SERVER_RESPONSE_TIMEOUT_MS.md23 CURLOPT_SERVER_RESPONSE_TIMEOUT_MS - time allowed to wait for server response
37 amount of time that the server is allowed to take in order to send a response
39 waiting for a response, this value overrides CURLOPT_TIMEOUT(3). It is
H A DCURLOPT_HEADERFUNCTION.md65 accept response data is used instead. That is the function specified with
71 response. This includes all responses which occur during authentication
73 response, you need to collect headers in the callback yourself and use HTTP
74 status lines, for example, to delimit response boundaries.
76 For an HTTP transfer, the status line and the blank line preceding the response
83 response-body. 2) it comes after the final header line (CR LF) 3) a Trailer:
84 header among the regular response-headers mention what header(s) to expect in
H A DCURLOPT_WRITEFUNCTION.md87 char *response;
96 char *ptr = realloc(mem->response, mem->size + realsize + 1);
100 mem->response = ptr;
101 memcpy(&(mem->response[mem->size]), data, realsize);
103 mem->response[mem->size] = 0;
124 free(chunk.response);
H A DCURLOPT_SASL_IR.md19 CURLOPT_SASL_IR - send initial response in first packet
31 Pass a long. If the value is 1, curl sends the initial response to the server
H A DCURLOPT_FOLLOWLOCATION.md34 redirects that an HTTP server sends in a 30x response. The Location: header
46 When following a redirect, the specific 30x response code also dictates which
49 instructs libcurl otherwise. All other redirect response codes make libcurl
69 Since libcurl changes method or not based on the specific HTTP response code,
/curl/packages/OS400/rpg-examples/
H A DINMEMORY34 * HTML tags in its response.
67 d response s 52 For error display
92 response = %str(errmsgp);
93 dsply '' '*EXT' response;
97 response = 'Tag count: ' + %char(counter.tagcount);
98 dsply '' '*EXT' response;
H A DHTTPPOST1 * Curl MIME post data and display response
33 * Example to HTTP POST data using the MIME API. Displays the response.
64 d response s 52 For error display
105 response = %str(errmsgp);
106 dsply '' '*EXT' response;
H A DSIMPLE234 * parameter and output its response.
63 dcl-s response char(52); // For error display
83 response = %str(errmsgp);
84 dsply '' '*EXT' response;
H A DSIMPLE134 * output its response.
63 d response s 52 For error display
84 c eval response = %str(errmsgp)
85 c dsply response
/curl/tests/
H A Ddictserver.py106 response = "552 {0}\n".format(response_data)
107 log.debug("[DICT] Responding with %r", response)
108 self.request.sendall(response.encode("utf-8"))
/curl/docs/libcurl/
H A Dcurl_easy_header.md38 with data for the HTTP response header *name*. The case insensitive
72 The first line in an HTTP response is called the status line. It is not
128 The header arrived in a CONNECT response. A CONNECT request is being done to
133 The header arrived in an HTTP 1xx response. A 1xx response is an "intermediate"
134 response that might happen before the "real" response.

Completed in 31 milliseconds

1234567891011