DnsServer: tcp timeout values reduced.

This commit is contained in:
Shreyas Zare
2018-09-22 17:10:52 +05:30
parent 515b56a87b
commit 69164b3cfa

View File

@@ -46,8 +46,8 @@ namespace DnsServerCore
#region variables
const int UDP_LISTENER_THREAD_COUNT = 3;
const int TCP_SOCKET_SEND_TIMEOUT = 30000;
const int TCP_SOCKET_RECV_TIMEOUT = 60000;
const int TCP_SOCKET_SEND_TIMEOUT = 10000;
const int TCP_SOCKET_RECV_TIMEOUT = 10000;
readonly IPEndPoint _localEP;