Lines Matching defs:header
181 size_t resp_hds_len; /* amount of response header bytes in recvbuf */
726 * push header access function. Only to be used from within the push callback
730 /* Verify that we got a good easy handle in the push header struct, mostly to
743 * push header access function. Only to be used from within the push callback
745 char *curl_pushheader_byname(struct curl_pushheaders *h, const char *header)
750 /* Verify that we got a good easy handle in the push header struct,
751 mostly to detect rubbish input fast(er). Also empty header name
753 the header, but header == ":" must be rejected. If we have ':' in
754 the middle of header, it could be matched in middle of the value,
756 if(!h || !GOOD_EASY_HANDLE(h->data) || !header || !header[0] ||
757 !strcmp(header, ":") || strchr(header + 1, ':'))
764 len = strlen(header);
766 if(!strncmp(header, stream->push_headers[i], len)) {
1045 /* Only final status code signals the end of header */
1531 received, and this is not pseudo-header field . */
1532 /* convert to an HTTP1-style header */
1549 CURL_TRC_CF(data_s, cf, "[%d] header: %.*s: %.*s",
1718 " all response header fields, treated as error",
2798 "from HTTP Upgrade response header: copied=%zd, datalen=%zu",
2838 char *curl_pushheader_byname(struct curl_pushheaders *h, const char *header)
2841 (void) header;