On Tue, 2003-10-14 at 13:14, Salvador Fandi�o wrote: > Another requirement is that, as multiplexing is based on select, > I can not use callbacks (even if I can accept running LDAP calls > or queries synchronously)
Using select() (or IO::Select) does not prevent callbacks from working. You do have to enable async-mode for the Net::LDAP handle and call $ldap->sync() [or examine sub _recvresp inside LDAP.pm] whenever activity is available. I presume you're already aware how to get the socket using $ldap->socket()
