RE: Facing issue while fetching large amount of file list using curl.

2013-10-27 Thread Daniel Stenberg
On Wed, 23 Oct 2013, Heet Kansagra - Quipment India wrote: libcurl V7.24.0 libssh2 V1.4.0 Right, so we have indeed fixed SFTP-related problems since then so it would make sense if you at least first checked that the bugs are still present! -- / daniel.haxx.se

RE: Facing issue while fetching large amount of file list using curl.

2013-10-23 Thread Heet Kansagra - Quipment India
Subject: Re: Facing issue while fetching large amount of file list using curl. On Tue, 22 Oct 2013, Heet Kansagra - Quipment India wrote: // Call back function for get file list static size_t getFileListCallBackFunction (void *buffer, size_t size, size_t nmemb, void

Re: Facing issue while fetching large amount of file list using curl.

2013-10-22 Thread Daniel Stenberg
On Tue, 22 Oct 2013, Heet Kansagra - Quipment India wrote: // Call back function for get file list static size_t getFileListCallBackFunction (void *buffer, size_t size, size_t nmemb, void *stream) { printf( buffer: %s,(char*)buffer); return size*nmemb; The