libcurl.pbi
Re: libcurl.pbi
Looks like curl_mime_data_cb() (link) and a matching callback reader are missing? How do you guys send emails with attachments from memory then? I don't like to save the file first to later use curl_mime_filedata() and then wipe it.
Anyone already implemented that?
UPDATE:
I added the declarations by myself. Never mind.
Anyone already implemented that?
UPDATE:
I added the declarations by myself. Never mind.
Re: libcurl.pbi
Updated libcurl to 8.12.1
Added example EMailWithFileAttachmentFromMemory.pb
Added example EMailWithFileAttachmentFromMemory.pb
Re: libcurl.pbi
Thank you! 

Re: libcurl.pbi
Updated libcurl to 8.13.0
Added websocket procedures and an example:
WSS_simple_echo.pb
WebSocket client is only possible with
https://curl.se/libcurl/c/libcurl-ws.html
Added websocket procedures and an example:
WSS_simple_echo.pb
WebSocket client is only possible with
Code: Select all
#LibCurl_ExternalDLL = #True
XIncludeFile "libcurl.pbi"
Re: libcurl.pbi
Incredibly cool, thanks for sharing as always!
Re: libcurl.pbi
Fixed a bug in FTPS_dir.pb:
If the directory is empty, an IMA at address 0 happened.
Libcurl never enters the write function and so no memory was allocated.
The memory is checked now.
If the directory is empty, an IMA at address 0 happened.
Libcurl never enters the write function and so no memory was allocated.
The memory is checked now.
Re: libcurl.pbi
Bug fix confirmed, thanks Infratec!
Thanks so much for all your libcurl work, I use it in all my applications now, one of them over 10K LOC, and it works amazingly.
Thanks so much for all your libcurl work, I use it in all my applications now, one of them over 10K LOC, and it works amazingly.
Re: libcurl.pbi
@Quin: Thank you for your kind words.
Fixed a bug in the example DownloadProgress.pb
I missed a CloseFile() in the DownLoadWithXferInfo() procedure.
Thanks to Wolfram, this is fixed now.
Fixed a bug in the example DownloadProgress.pb
I missed a CloseFile() in the DownLoadWithXferInfo() procedure.
Thanks to Wolfram, this is fixed now.
Re: libcurl.pbi
Updated libcurl to 8.14.1
Re: libcurl.pbi
Added examples:
FTP_mkdir.pb
FTP_rmdir.pb
FTP_mkdir.pb
FTP_rmdir.pb
Re: libcurl.pbi
Updated libcurl to 8.15.0
Re: libcurl.pbi
Woot, thanks!