2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

2398. [bug] Improve file descriptor management. New,

temporary, named.conf option reserved-sockets,
                        default 512. [RT #18344]
This commit is contained in:
Mark Andrews
2008-09-04 05:56:43 +00:00
parent f5662f41e7
commit 0eeaaaf0ae
10 changed files with 120 additions and 45 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: socket.c,v 1.66 2008/08/20 23:57:59 jinmei Exp $ */
/* $Id: socket.c,v 1.67 2008/09/04 05:56:43 marka Exp $ */
/* This code has been rewritten to take advantage of Windows Sockets
* I/O Completion Ports and Events. I/O Completion Ports is ONLY
@@ -4006,3 +4006,9 @@ void *
isc_socket_gettag(isc_socket_t *socket) {
return (socket->tag);
}
void
isc__socketmgr_setreserved(isc_socketmgr_t *manager, isc_uint32_t reserved) {
UNUSED(manager);
UNUSED(reserved);
}