Lines Matching refs:encodings
151 -static void send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads,…
152 +static void send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads,…
246 -send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads, char* type,…
247 +send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads, char* type,…
316 if ( encodings[0] != '\0' )
319 - "Content-Encoding: %s\r\n", encodings );
322 + smart_str_appends(&s, encodings);
451 + hc->encodings[0] = '\0';
539 - hc->encodings[0] = '\0';
759 hc, 200, ok200title, hc->encodings, "", hc->type, hc->sb.st_size,
769 - hc, 304, err304title, hc->encodings, "", hc->type, hc->sb.st_size,
771 + hc, 304, err304title, hc->encodings, "", hc->type, -1,
797 - hc, 200, ok200title, hc->encodings, "", hc->type, hc->sb.st_size,
799 + hc, 200, ok200title, hc->encodings, extraheads, hc->type, hc->sb.st_size,