Home | History | Annotate | Download | only in libevent

Lines Matching refs:content_length

446     long content_length)
451 evutil_snprintf(len, sizeof(len), "%ld", content_length);
1534 const char *content_length;
1537 content_length = evhttp_find_header(headers, "Content-Length");
1540 if (content_length == NULL && connection == NULL)
1542 else if (content_length == NULL &&
1549 } else if (content_length == NULL) {
1553 ev_int64_t ntoread = evutil_strtoll(content_length, &endp, 10);
1554 if (*content_length == '\0' || *endp != '\0' || ntoread < 0) {
1556 __func__, content_length));