[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Make dns_cancel_pending_resolve less agressive.
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/tmp/cvs-serv31383/src/or
Modified Files:
dns.c
Log Message:
Make dns_cancel_pending_resolve less agressive.
Index: dns.c
===================================================================
RCS file: /home/or/cvsroot/src/or/dns.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- dns.c 28 Feb 2004 21:52:58 -0000 1.56
+++ dns.c 28 Feb 2004 22:06:59 -0000 1.57
@@ -185,9 +185,10 @@
return 0;
}
-/* if onlyconn is NULL, cancel the whole thing. if onlyconn is defined,
- * then remove onlyconn from the pending list, and if the pending list
- * is now empty, cancel the whole thing.
+
+/* If onlyconn is NULL, cancel all pending connections. If onlyconn is
+ * defined, then remove onlyconn from the pending list. Does not cancel the
+ * resolve itself, or remove the 'struct cached_resolve' from the cache.
*/
void dns_cancel_pending_resolve(char *address, connection_t *onlyconn) {
struct pending_connection_t *pend, *victim;
@@ -214,7 +215,6 @@
if(resolve->pending_connections) {/* more pending, don't cancel it */
log_fn(LOG_DEBUG, "Connection (fd %d) no longer waiting for resolve of '%s'",
onlyconn->s, address);
- return;
}
} else {
for( ; pend->next; pend = pend->next) {
@@ -240,26 +240,6 @@
free(pend);
}
}
-
- /* remove resolve from the linked list */
- if(resolve == oldest_cached_resolve) {
- oldest_cached_resolve = resolve->next;
- if(oldest_cached_resolve == NULL)
- newest_cached_resolve = NULL;
- } else {
- /* FFFF make it a doubly linked list if this becomes too slow */
- for(tmp=oldest_cached_resolve; tmp && tmp->next != resolve; tmp=tmp->next) ;
- assert(tmp); /* it's got to be in the list, or we screwed up somewhere else */
- tmp->next = resolve->next; /* unlink it */
-
- if(newest_cached_resolve == resolve)
- newest_cached_resolve = tmp;
- }
-
- /* remove resolve from the tree */
- SPLAY_REMOVE(cache_tree, &cache_root, resolve);
-
- free(resolve);
}
static void dns_found_answer(char *address, uint32_t addr) {