aboutsummaryrefslogtreecommitdiffstats
path: root/pacredir.c
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2021-05-28 13:40:18 +0200
committerGravatar Christian Hesse <mail@eworm.de>2021-06-07 09:59:03 +0200
commit4a4d07193cba5e07ba4c4d94d241cc438b8b2b7c (patch)
treefdb481b68d792d9e409d8c365664f92b1e91d1d1 /pacredir.c
parentd43852fc9ff49b558a376ffc58f938fa62f028cc (diff)
downloadpacredir-4a4d07193cba5e07ba4c4d94d241cc438b8b2b7c.tar.gz
pacredir-4a4d07193cba5e07ba4c4d94d241cc438b8b2b7c.tar.zst
get the db timestamp from http request
Diffstat (limited to 'pacredir.c')
-rw-r--r--pacredir.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/pacredir.c b/pacredir.c
index ca63ea7..bbb297c 100644
--- a/pacredir.c
+++ b/pacredir.c
@@ -371,14 +371,15 @@ static mhd_result ahc_echo(void * cls,
const char * basename, * host = NULL;
struct timeval tv;
- struct stat fst;
- char * filename;
+ struct tm tm;
+ const char * if_modified_since = NULL;
+ time_t last_modified = 0;
uint8_t dbfile = 0;
int i, error, req_count = -1;
pthread_t * tid = NULL;
struct request ** requests = NULL;
struct request * request = NULL;
- long http_code = 0, last_modified = 0;
+ long http_code = 0;
double time_total = INFINITY;
char ctime[26];
@@ -429,17 +430,13 @@ static mhd_result ahc_echo(void * cls,
goto response;
}
- /* get timestamp of local file */
- filename = malloc(strlen(SYNCPATH) + strlen(basename) + 2);
- sprintf(filename, SYNCPATH "/%s", basename);
-
- if (stat(filename, &fst) != 0) {
- if (verbose > 0)
- write_log(stdout, "You do not have a local copy of %s\n", basename);
- } else
- last_modified = fst.st_mtime;
-
- free(filename);
+ /* get timestamp from request */
+ if ((if_modified_since = MHD_lookup_connection_value(connection,
+ MHD_HEADER_KIND, MHD_HTTP_HEADER_IF_MODIFIED_SINCE))) {
+ if (strptime(if_modified_since, "%a, %d %b %Y %H:%M:%S %Z", &tm) != NULL) {
+ last_modified = timegm(&tm);
+ }
+ }
}
/* try to find a server with most recent file */