diff options
author | Roger Dingledine <arma@torproject.org> | 2003-06-24 05:17:09 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-06-24 05:17:09 +0000 |
commit | e061b70dbf1a55244a66f1e6d7a0085fbebb5857 (patch) | |
tree | 8e3db4eec6acd79d83a3766f784c6da9b0ff7e6b | |
parent | 59633aedddd5fa9dd1b0354cb5b93991bb733d72 (diff) | |
download | tor-e061b70dbf1a55244a66f1e6d7a0085fbebb5857.tar tor-e061b70dbf1a55244a66f1e6d7a0085fbebb5857.tar.gz |
a pointer to async-dns alternatives.
apparently glibc 2.2.4 and windows both have async gethostbynames now.
we'll want to make use of them if they're available (via autoconf).
svn:r347
-rw-r--r-- | src/or/dns.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 562eb1cab..4a4ce3d49 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -2,6 +2,11 @@ /* See LICENSE for licensing information */ /* $Id$ */ +/* See http://elvin.dstc.com/ListArchive/elvin-dev/archive/2001/09/msg00027.html + * for some approaches to asynchronous dns. We will want to switch once one of + * them becomes more commonly available. + */ + #include "or.h" #include "tree.h" |