increase queue size to protect against overwhelming the AI

This commit is contained in:
David Rose 2004-07-28 00:06:35 +00:00
parent 9dc039b652
commit f731db1397

View File

@ -64,7 +64,7 @@ int get_net_max_write_queue() {
// in the various QueuedConnectionReader, QueuedConnectionListener,
// and QueuedConnectionManager classes.
int get_net_max_response_queue() {
return config_net.GetInt("net-max-response-queue", 10000);
return config_net.GetInt("net-max-response-queue", 50000);
}
bool get_net_error_abort() {