| 158 | } |
| 159 | |
| 160 | AP_DECLARE(void) ap_set_content_length(request_rec *r, apr_off_t clength) |
| 161 | { |
| 162 | r->clength = clength; |
| 163 | apr_table_setn(r->headers_out, "Content-Length", |
| 164 | apr_off_t_toa(r->pool, clength)); |
| 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Return the latest rational time from a request/mtime (modification time) |
no outgoing calls