Revision: 16834
Author: thekingant
Date: 2006-08-18 00:22:55 -0700 (Fri, 18 Aug 2006)
ViewCVS: http://svn.sourceforge.net/gaim/?rev=16834&view=rev
Log Message:
-----------
Only doing 2 DNS requests at a time seems a little restrictive.
Modified Paths:
--------------
trunk/src/dnsquery.c
Modified: trunk/src/dnsquery.c
===================================================================
--- trunk/src/dnsquery.c 2006-08-18 07:20:31 UTC (rev 16833)
+++ trunk/src/dnsquery.c 2006-08-18 07:22:55 UTC (rev 16834)
@@ -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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|