diff options
author | dgaudet <dgaudet@unknown> | 2000-01-09 06:18:31 +0100 |
---|---|---|
committer | dgaudet <dgaudet@unknown> | 2000-01-09 06:18:31 +0100 |
commit | faff1f01dd44936eb7e4b553f42e872edd9f2f2b (patch) | |
tree | 0c5a44996a4b7b25f4fd018751996ec013b3a344 /include/http_protocol.h | |
parent | add missing compatiblity info (diff) | |
download | apache2-faff1f01dd44936eb7e4b553f42e872edd9f2f2b.tar.xz apache2-faff1f01dd44936eb7e4b553f42e872edd9f2f2b.zip |
time overhaul:
- ap_time_t is a 64-bit scalar, microseconds since epoch
- ap_exploded_time_t corresponds to struct tm with a few extras
probably broken on anything except linux.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84413 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r-- | include/http_protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index bb6cd99d73..13a7ac287f 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -118,7 +118,7 @@ API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error); API_EXPORT(int) ap_set_content_length(request_rec *r, long length); API_EXPORT(int) ap_set_keepalive(request_rec *r); -API_EXPORT(ap_time_t *) ap_rationalize_mtime(request_rec *r, ap_time_t *mtime); +API_EXPORT(ap_time_t) ap_rationalize_mtime(request_rec *r, ap_time_t mtime); API_EXPORT(char *) ap_make_etag(request_rec *r, int force_weak); API_EXPORT(void) ap_set_etag(request_rec *r); API_EXPORT(void) ap_set_last_modified(request_rec *r); |