# HG changeset patch # User Mark Doliner # Date 1155885775 0 # Node ID ccb670ba3b4f48f7412bba8b77ace9751f15f28e # Parent fc92a5a7dd95cfb0101fc6f18ac2441ec20d0b14 [gaim-migrate @ 16834] Only doing 2 DNS requests at a time seems a little restrictive. committer: Tailor Script diff -r fc92a5a7dd95 -r ccb670ba3b4f src/dnsquery.c --- a/src/dnsquery.c Fri Aug 18 07:20:31 2006 +0000 +++ b/src/dnsquery.c Fri Aug 18 07:22:55 2006 +0000 @@ -37,6 +37,8 @@ #if defined(__unix__) || defined(__APPLE__) +#define MAX_DNS_CHILDREN 4 + /* * This structure represents both a pending DNS request and * a free child process. @@ -56,8 +58,6 @@ static int number_of_dns_children = 0; -static const int MAX_DNS_CHILDREN = 2; - typedef struct { char hostname[512]; int port;