Work in progress on the implementation of parallel DNS queries.

cusax-fix
Emil Ivov 16 years ago
parent a975369dfc
commit 338ac3afde

@ -287,9 +287,9 @@ public void run()
{
response = defaultResolver.send(query);
}
catch (IOException e)
catch (IOException exc)
{
this.exception = exc;
}
synchronized(this)
{
@ -298,6 +298,9 @@ public void run()
}
}
/**
* Asynchronously sends this collector's query to all backup resolvers.
*/
public void sendBackupQueries()
{
for (Resolver resolver : backupResolvers)

Loading…
Cancel
Save