mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-12 22:23:49 +01:00
make dns resolves a lot faster
(but only enable this once we've found the bug) svn:r1358
This commit is contained in:
parent
2ba9901cb4
commit
4a5586b8e3
14
src/or/dns.c
14
src/or/dns.c
@ -109,11 +109,21 @@ int dns_resolve(connection_t *exitconn) {
|
|||||||
struct cached_resolve *resolve;
|
struct cached_resolve *resolve;
|
||||||
struct cached_resolve search;
|
struct cached_resolve search;
|
||||||
struct pending_connection_t *pending_connection;
|
struct pending_connection_t *pending_connection;
|
||||||
|
struct in_addr in;
|
||||||
uint32_t now = time(NULL);
|
uint32_t now = time(NULL);
|
||||||
assert_connection_ok(exitconn, 0);
|
assert_connection_ok(exitconn, 0);
|
||||||
|
|
||||||
/* first take this opportunity to see if there are any expired
|
#if 0 /* only enable this once we've found the conn-munging bug */
|
||||||
resolves in the tree.*/
|
/* first check if exitconn->address is an IP. If so, we already
|
||||||
|
* know the answer. */
|
||||||
|
if (tor_inet_aton(exitconn->address, &in) != 0) {
|
||||||
|
exitconn->addr = ntohl(in.s_addr);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* then take this opportunity to see if there are any expired
|
||||||
|
* resolves in the tree. */
|
||||||
purge_expired_resolves(now);
|
purge_expired_resolves(now);
|
||||||
|
|
||||||
/* now check the tree to see if 'address' is already there. */
|
/* now check the tree to see if 'address' is already there. */
|
||||||
|
Loading…
Reference in New Issue
Block a user