summaryrefslogtreecommitdiff
path: root/src/cache.c
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2014-08-08 01:14:52 +0000
committercorvid <devnull@localhost>2014-08-08 01:14:52 +0000
commitffb8100ff3222e8aa11bd33a7c1ea7342f2c6aea (patch)
treebcb85bba820a9580b76259cd42ebaa91b87073d7 /src/cache.c
parent0553cb9e777357d8d25819735503f3251198c27c (diff)
abort failed queries
http://lists.dillo.org/pipermail/dillo-dev/2014-July/010190.html and no one objected, and it hasn't given me any trouble, so...
Diffstat (limited to 'src/cache.c')
-rw-r--r--src/cache.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/cache.c b/src/cache.c
index 4b216c55..d28faa7a 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -974,8 +974,17 @@ bool_t a_Cache_process_dbuf(int Op, const char *buf, size_t buf_size,
} else if (Op == IOClose) {
Cache_finish_msg(entry);
} else if (Op == IOAbort) {
- /* unused */
- MSG("a_Cache_process_dbuf Op = IOAbort; not implemented!\n");
+ int i;
+ CacheClient_t *Client;
+
+ for (i = 0; (Client = dList_nth_data(ClientQueue, i)); ++i) {
+ if (Client->Url == entry->Url) {
+ DilloWeb *web = (DilloWeb *)Client->Web;
+
+ a_Bw_remove_client(web->bw, Client->Key);
+ Cache_client_dequeue(Client);
+ }
+ }
}
return done;
}