mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Updated the TCP_BACLOG from 5 to 256, so that the tcp accept queue
is longer and more tcp connections can be handled. git-svn-id: file:///svn/unbound/trunk@3224 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
b9e1d08ce2
commit
f1294a93cd
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
|||
16 September 2014: Wouter
|
||||
- Fix tcp timer waiting list removal code.
|
||||
- iana portlist update.
|
||||
- Updated the TCP_BACLOG from 5 to 256, so that the tcp accept queue
|
||||
is longer and more tcp connections can be handled.
|
||||
|
||||
15 September 2014: Wouter
|
||||
- Fix unit test for CDS typecode.
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
#include <fcntl.h>
|
||||
|
||||
/** number of queued TCP connections for listen() */
|
||||
#define TCP_BACKLOG 5
|
||||
#define TCP_BACKLOG 256
|
||||
|
||||
/**
|
||||
* Debug print of the getaddrinfo returned address.
|
||||
|
|
|
|||
Loading…
Reference in a new issue