Lines Matching defs:coding
263 Transfer-Encoding = 1#transfer-coding
267 transfer-coding = "chunked" ; RFC 7230, Section 4.1
277 /* transfer-coding */
279 struct http_transfer_coding *coding;
282 coding = array_append_space(&parser->msg.transfer_encoding);
283 coding->name = p_strdup(pool, trenc);
319 if (!array_is_created(&coding->parameters))
320 p_array_init(&coding->parameters, pool, 2);
321 param = array_append_space(&coding->parameters);
442 const struct http_transfer_coding *coding;
446 array_foreach(&parser->msg.transfer_encoding, coding) {
447 if (strcasecmp(coding->name, "chunked") == 0) {
451 && array_is_created(&coding->parameters)
452 && array_count(&coding->parameters) > 0) {
454 array_idx(&coding->parameters, 0);
459 "for the `%s' transfer coding", param->attribute, coding->name);
469 "Unknown transfer coding `%s'", coding->name);
481 the chunked transfer coding is not the final encoding, the
492 the chunked transfer coding is not the final encoding, the