Lines Matching refs:status
1536 CURLcode status, bool premature)
1558 if(status)
1559 return status;
3368 STATUS_DONE, /* a status line was read */
3369 STATUS_BAD /* not a status line */
3762 * Called after the first HTTP response line (the status line) has been
3875 /* the first "header" is the status-line and it has no colon */
4018 /* "A user agent MAY ignore unexpected 1xx status responses." */
4076 /* the status code 1xx indicates a provisional response, so
4170 /* All non-101 HTTP status codes are bad when wanting to upgrade to
4572 /* Decode HTTP status code string. */
4576 int status = 0;
4588 status *= 10;
4589 status += c - '0';
4593 *pstatus = result? -1 : status;
4902 int status,
4912 resp->status = status;