https://bugs.openldap.org/show_bug.cgi?id=8977
--- Comment #14 from Howard Chu hyc@openldap.org --- (In reply to Quanah Gibson-Mount from comment #8)
--On Thursday, June 27, 2019 8:56 PM +0000 quanah@symas.com wrote:
--On Thursday, June 27, 2019 8:35 PM +0000 hyc@symas.com wrote:
No, because order is irrelevant for these.
Cool, thanks! I'll continue on with deeper testing then. :)
Given the current implementation of OpenLDAP, this feature is impossible to use w/o recompiling OpenLDAP when a change to the IDL size is made. This is because LDAP_PVT_THREAD_STACK_SIZE must be adjusted as well and that requires a recompile.
This is actually not correct. The stack size was only required because IDLs were of constant size and some were allocated on the stack. But with this patch, since IDL sizes are variable they must all be dynamically allocated using ch_malloc, and so has no impact on the stack any more.