HomeSort by relevance Sort by last modified time
    Searched refs:httpcode (Results 1 - 8 of 8) sorted by null

  /external/curl/tests/libtest/
lib1532.c 31 long httpcode; local
47 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
53 if(httpcode != 200) {
55 __FILE__, __LINE__, httpcode);
63 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
69 if(httpcode != 0) {
  /external/curl/lib/
http_proxy.c 447 if((407 == k->httpcode) && !data->state.authproblem) {
502 (401 == k->httpcode)) ||
504 (407 == k->httpcode))) {
506 bool proxy = (k->httpcode == 407) ? TRUE : FALSE;
519 if(k->httpcode/100 == 2) {
524 k->httpcode);
534 if(k->httpcode/100 == 2) {
539 "CONNECT %03d response\n", k->httpcode);
554 &k->httpcode)) {
556 data->info.httpproxycode = k->httpcode;
    [all...]
http.c 482 if(100 <= data->req.httpcode && 199 >= data->req.httpcode)
490 ((data->req.httpcode == 401) ||
491 (conn->bits.authneg && data->req.httpcode < 300))) {
497 ((data->req.httpcode == 407) ||
498 (conn->bits.authneg && data->req.httpcode < 300))) {
521 else if((data->req.httpcode < 300) &&
538 data->req.httpcode);
911 int httpcode; local
917 httpcode = data->req.httpcode
    [all...]
getinfo.c 59 info->httpcode = 0;
153 *param_longp = data->info.httpcode;
urldata.h 543 int httpcode; /* error code from the 'HTTP/1.? XXX' or member in struct:SingleRequest
1024 int httpcode; \/* Recent HTTP, FTP, RTSP or SMTP response code *\/ member in struct:PureInfo
    [all...]
transfer.c 637 data->info.httpcode = 304;
    [all...]
smtp.c 1012 data->info.httpcode = smtpcode;
    [all...]
ftp.c 596 data->info.httpcode = code;
    [all...]

Completed in 621 milliseconds