Searched refs:hdlen (Results 1 – 6 of 6) sorted by relevance
/curl/lib/ |
H A D | http.c | 2802 #define HD_IS(hd, hdlen, n) \ argument 2805 #define HD_VAL(hd, hdlen, n) \ argument 2806 ((((hdlen) >= (sizeof(n)-1)) && \ 2811 #define HD_IS_AND_SAYS(hd, hdlen, n, v) \ argument 2812 (HD_IS(hd, hdlen, n) && \ 2891 v = HD_VAL(hd, hdlen, "Content-Type:"); in Curl_http_header() 3055 v = HD_VAL(hd, hdlen, "Retry-After:"); in Curl_http_header() 3151 v = HD_VAL(hd, hdlen, "Trailer:"); in Curl_http_header() 3301 char *ptr = memchr(hd, 0x00, hdlen); in verify_header() 3314 ptr = memchr(hd, ':', hdlen); in verify_header() [all …]
|
H A D | http.h | 105 const char *hd, size_t hdlen); 137 const char *hd, size_t hdlen,
|
H A D | transfer.h | 74 const char *hd0, size_t hdlen, bool is_eos);
|
H A D | http_chunks.c | 585 int hdlen; in add_chunk() local 588 hdlen = msnprintf(hd, sizeof(hd), "%zx\r\n", nread); in add_chunk() 589 if(hdlen <= 0) in add_chunk() 592 result = Curl_bufq_cwrite(&ctx->chunkbuf, hd, hdlen, &n); in add_chunk()
|
H A D | transfer.c | 901 const char *hd0, size_t hdlen, bool is_eos) in Curl_xfer_write_resp_hd() argument 906 return data->conn->handler->write_resp_hd(data, hd0, hdlen, is_eos); in Curl_xfer_write_resp_hd() 909 return Curl_xfer_write_resp(data, hd0, hdlen, is_eos); in Curl_xfer_write_resp_hd()
|
H A D | urldata.h | 708 const char *hd, size_t hdlen, bool is_eos);
|
Completed in 30 milliseconds