libcurl.NET icon indicating copy to clipboard operation
libcurl.NET copied to clipboard

A fork of libcurl.NET to modernize it a bit

Results 8 libcurl.NET issues
Sort by recently updated
recently updated
newest added

Hi pjquirk, your project is awesome, i love it. Can you please make tutorial how to build libcurl.dll (for windows 7)? Because I need newest version of libcurl.dll. Thanks.

Would like to know if the current version can be referred from .NET 6 projects. Please advise

Hi, I'm trying to send JSON docs to SOLR with this package, but somehow I can't make it work. Here is my code: ``` string SOLRInsert = "http://192.168.x.x:8985/solr/test/update"; byte[] dataBytes...

http://stackoverflow.com/questions/1636333/download-file-using-libcurl-in-c-c in this example curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp); fp is a File\* pointer

Investigate statically-linking the two native C libraries to reduce the number of files to be distributed. This would/could also remove the need for `GetProcAddress` in the shim (we'd just compile...

[`curl_shim_formadd`](https://github.com/pjquirk/libcurl.NET/blob/9dc19b98f941e122a477e3fc767b6bddbdf59777/shim/LibCurlShim.c#L412) (in the shim library) is broken since the [`__asm` keyword is not supported by the compiler in x64 builds](http://mariusbancila.ro/blog/2010/10/17/no-more-inline-asm-in-vc-on-x64/). This should be rewritten to work again.

The native libcurl library was updated from 7.13.0 to 7.40.0. This represents nearly a decade of changes, and there have been new APIs added. The C# bindings should be updated...

Currently this library is distributed as three different libraries: 1. libcurl.NET.dll (C#) 2. libcurl.dll (C) 3. LibCurlShim.dll (C) Some consumers might prefer a version that is all rolled into one...