Re: Empty error message "Error setting curl:"

2013-02-11 Thread Daniel Stenberg
On Mon, 11 Feb 2013, Brilliantov Kirill Vladimirovich wrote: #define curl_easy_setopt_or_die(handle, option, ...) \ do {\ CURLcode res = curl_easy_setopt(handle, option, __VA_ARGS__);\ if (res != CURLE_OK) {\ fprintf(stderr, "Error setting curl: %s (%d)\n", error_buf, __LINE__);\

Re: Empty error message "Error setting curl:"

2013-02-10 Thread Brilliantov Kirill Vladimirovich
Hello! I think I found problem. CurlFTPFS set CURLOPT_FTP_SSL option, but I buld curl without SSL support. I not understand another - CurlFTPFS set CURLOPT_ERRORBUFFER to error_buf (static char error_buf[CURL_ERROR_SIZE]) and use follow define for set curl options: #define curl_easy_setopt_or_d

Re: Empty error message "Error setting curl:"

2013-02-08 Thread Michael Wood
On 8 February 2013 15:56, Brilliantov Kirill Vladimirovich wrote: > Daniel Stenberg wrote on 02/08/2013 05:11 PM: > >> CURLOPT_VERBOSE and CURLOPT_DEBUGFUNCTION are fairly good ways to get >> info out from libcurl. > > Hello, Daniel! > I found what CURLOPT_VERBOSE used in curlftpfs: > $ grep CURLO

Re: Empty error message "Error setting curl:"

2013-02-08 Thread Brilliantov Kirill Vladimirovich
Daniel Stenberg wrote on 02/08/2013 05:11 PM: CURLOPT_VERBOSE and CURLOPT_DEBUGFUNCTION are fairly good ways to get info out from libcurl. Hello, Daniel! I found what CURLOPT_VERBOSE used in curlftpfs: $ grep CURLOPT_VERBOSE -rnI -C1 . ./ftpfs.c-1544- if (ftpfs.verbose) { ./ftpfs.c:1545:

Re: Empty error message "Error setting curl:"

2013-02-08 Thread Daniel Stenberg
On Fri, 8 Feb 2013, Brilliantov Kirill Vladimirovich wrote: Yes, this is problem with curlftpfs, but may be you help me increase curl output? CURLOPT_VERBOSE and CURLOPT_DEBUGFUNCTION are fairly good ways to get info out from libcurl. -- / daniel.haxx.se --

Empty error message "Error setting curl:"

2013-02-08 Thread Brilliantov Kirill Vladimirovich
Hello! I have to write files from ARM-based board on FTP, for this I think use curlftpfs, I download and crosscompile curlftpfs-0.9.2, curl-7.29.0, fuse-2.9.2 and it depends. I can download file from board to server: ./curl -iT stream0_01.avi -u user:passwd ftp://192.168.255.1 % Total% Rec