[Date Prev][Date Next] [Chronological] [Thread] [Top]

(ITS#3394) slapd select->poll for >1024 connections



Full_Name: Volker Lendecke
Version: 2.2.18
OS: SuSE Linux 8.2
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (82.82.183.66)


slapd standard compile does not support more than about 1000 client connections,
as it uses the select system call. volker-lendecke-041114.diff in
ftp.openldap.org/incoming is a patch to convert the main slapd loop from select
to poll. With this patch slapd does not need to take care of FD_SETSIZE
anymore.

This patch does not yet contain the necessary configure check, it hard-codes 

#ifdef HAVE_POLL 1

Volker