[RELEASE] curl and libcurl 7.28.1

2012-11-20 Thread Daniel Stenberg
Hi friends! During the last 41 days, 27 contributors helped out to fix at least 31 bugs and I'm happy to inform you that curl and libcurl 7.28.1 has been uploaded to the site, available as always from: http://curl.haxx.se/ Curl and libcurl 7.28.1 Public curl releases: 130

Re: Does libcurl supports LDAP connections over SOCKS proxy?

2012-11-20 Thread Dan Fandrich
On Thu, Nov 15, 2012 at 02:47:58PM +0400, Anton Malov wrote: Tried to set custom socket for LDAP connection using LDAP_OPT_DESC option http://msdn.microsoft.com/en-us/library/aa367019(VS.85).aspx This is not working because operation returns 0x35 which stands for LDAP_UNWILLING_TO_PERFORM

Re: Does libcurl supports LDAP connections over SOCKS proxy?

2012-11-20 Thread Anton Malov
On 16.11.2012 22:09, Dan Fandrich wrote: Do you get a different error when you connect directly to the LDAP server? This error makes it sound like the connection to the LDAP server actually succeeded, but the server has trouble with the request. I made a call to ldap_set_option between

Re: [RELEASE] curl and libcurl 7.28.1

2012-11-20 Thread Nick Zitzmann
On Nov 20, 2012, at 2:13 AM, Daniel Stenberg dan...@haxx.se wrote: Hi friends! During the last 41 days, 27 contributors helped out to fix at least 31 bugs and I'm happy to inform you that curl and libcurl 7.28.1 has been uploaded to the site, available as always from:

Can't use POST forms with an HTTP PUT

2012-11-20 Thread Paul Bergen
I have written a client that sends data to a server running an http RESTful API. One of the requests (URI's) requires me to submit multiple pieces of data, which I do using curl_formadd (CURLFORM_COPYNAME/CURLFORM_COPYCONTENTS) to send the data, which is like a form (ie FirstName, File1, File2,

Example C++ program to demonstrate the use of multi interface with boost::asio

2012-11-20 Thread Lijo Antony
Hi All, It has been a year now, since I started using libcurl in a cross platform c++ application. Libcurl has improved the performance of my application. This community has also helped me a lot during this period. Thank you all for your help and an awesome library. I am using multi

Re: Can't use POST forms with an HTTP PUT

2012-11-20 Thread Daniel Stenberg
On Tue, 20 Nov 2012, Paul Bergen wrote: Does anybody know how to do this or where to find a sample? Or is there some way to just override the verb? CURLOPT_CUSTOMREQUEST does _exactly_ that. It replaces the method name only and changes nothing else. -- / daniel.haxx.se

Re: Improving IMAP support

2012-11-20 Thread Daniel Stenberg
On Mon, 19 Nov 2012, Jiří Hruška wrote: I've settled on trying to use CURL anyway and enhancing the current level of IMAP support in it. I'm writting to the list to validate the approaches I've taken and align what I'm doing with you, so that my patch is more correct and could get accepted

Re: Example C++ program to demonstrate the use of multi interface with boost::asio

2012-11-20 Thread Daniel Stenberg
On Wed, 21 Nov 2012, Lijo Antony wrote: I am using multi interface along with boost::asio library(as a replacement for libev). When I first tried this, I had faced many challenges, mainly due to lack of documentation and examples. So to help others who may try this approach, I have written a