Re: deprecated functions

2007-03-02 Thread Howard Chu
bout all of the deprecated functions, except for: ldap_sort_entries ldap_sort_values ldap_sort_strcasecmp of which Net::LDAPapi only uses ldap_sort_entries. Is there a replacement function for this? If not, any thoughts on what the steps are to duplicate that functionality? So no one else knows

Re: deprecated functions

2007-03-02 Thread Quanah Gibson-Mount
--On Thursday, February 22, 2007 11:48 AM -0800 Quanah Gibson-Mount <[EMAIL PROTECTED]> wrote: I'm interested in updating Net::LDAPapi so that it no longer uses the deprecated C API. ldap.h is nicely commented on the replacement functions for just about all of the deprecate

deprecated functions

2007-02-22 Thread Quanah Gibson-Mount
I'm interested in updating Net::LDAPapi so that it no longer uses the deprecated C API. ldap.h is nicely commented on the replacement functions for just about all of the deprecated functions, except for: ldap_sort_entries ldap_sort_values ldap_sort_strcasecmp of which Net::LDAPapi only

Re: Finding out what replaces deprecated functions

2006-08-10 Thread Gavin Henry
> I just committed an updated regarding alternatives. I think there has been a typo, or I am being stupid: ldap_unbind LDAP_P(( /* deprecated, use ldap_bind_ext */ Shouldn't that be ldap_unbind_ext? Thanks. > > Kurt > > At 04:24 PM 8/9/2006, Michael Ströder wrote: >>Gavin Henry wrote: >>> >>

Re: Finding out what replaces deprecated functions

2006-08-10 Thread Gavin Henry
> I just committed an updated regarding alternatives. Many thanks for the speedy commit! Will help us ou a lot. By the way, if you are interested, the code in question is a LDAP RealTime Plugin for Asterisk: http://bugs.digium.com/view.php?id=5768 I hope to get past the update and on to addi

Re: Finding out what replaces deprecated functions

2006-08-10 Thread Gavin Henry
> Unforunately, our work to revise the manual pages has stalled. No problem. > > Aside from the archives (I think most if not all the particular > cases have been discussed before), I suggest you look at > for like, non-deprecated functions. Thanks. > > At 01:16 PM

Re: Finding out what replaces deprecated functions

2006-08-09 Thread Kurt D. Zeilenga
I just committed an updated regarding alternatives. Kurt At 04:24 PM 8/9/2006, Michael Ströder wrote: >Gavin Henry wrote: >> >> We're updating some LDAP code in another peice of software, how do we find >> out what replaces these functions: >> >> ldap_get_values >> ldap_value_free >> ldap_sear

Re: Finding out what replaces deprecated functions

2006-08-09 Thread Michael Ströder
Gavin Henry wrote: > > We're updating some LDAP code in another peice of software, how do we find > out what replaces these functions: > > ldap_get_values > ldap_value_free > ldap_search_s > ldap_unbind_s > ldap_init > ldap_simple_bind_s > ldap_unbind > > I can see the #if LDAP_DEPRECATED in lda

Re: Finding out what replaces deprecated functions

2006-08-09 Thread Kurt D. Zeilenga
Unforunately, our work to revise the manual pages has stalled. Aside from the archives (I think most if not all the particular cases have been discussed before), I suggest you look at for like, non-deprecated functions. At 01:16 PM 8/9/2006, Gavin Henry wrote: >Dear all, > >We're

Finding out what replaces deprecated functions

2006-08-09 Thread Gavin Henry
Dear all, We're updating some LDAP code in another peice of software, how do we find out what replaces these functions: ldap_get_values ldap_value_free ldap_search_s ldap_unbind_s ldap_init ldap_simple_bind_s ldap_unbind I can see the #if LDAP_DEPRECATED in ldap.h from 2.3.25. Where can I find o