WWW--Curl icon indicating copy to clipboard operation
WWW--Curl copied to clipboard

Perl binding for libcurl

Results 18 WWW--Curl issues
Sort by recently updated
recently updated
newest added

This has been tested on ArchLinux with curl 7.70.0. It should be backwards compatible with older versions of curl that used `__CURL_MULTI_H`. It also fixes some symbol issues where `CURL_WIN32`...

4.17: clang -c -I/usr/include -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -pipe -O2 -pipe -march=native -DVERSION=\"4.17\" -DXS_VERSION=\"4.17\" -fPIC "-I/usr/lib64/perl5/5.24.0/x86_64-linux-thread-multi/CORE" Curl.c In file included from Curl.xs:574: ./curlopt-constants.c:19:58: error: non-void function...

Tune Curl.xs to compile without warnings with newer libcurl and still maintaining backward capability

Upstream cURL have some definitions that should be ignored. This patch set add needed ignore rules. This is update to #20

Anyone still working, supporting this module or simple it is not maintained anymore ?

Changes to allow building on newer libCurl, Better validate source availability, and support CURLINFO_CERTINFO Let me know what you think and provide any changes you see necessary, I don't actually...

After many changes and errors I changed my Makefile to this list to make sure that it compiles correctly `for my $e (sort @syms) { if($e =~ /(OBSOLETE|^CURL_EXTERN|_LAST\z|_LASTENTRY\z|CURL_DID_MEMORY_FUNC_TYPEDEFS\z|^CURL_STRICTER\z)/) {` however...

``` perl #!perl use strict; use WWW::Curl::Easy; use HTTP::Headers; use HTTP::Request; use HTTP::Response; my $host = $ARGV[0] || 'www.google.com'; my $req = HTTP::Request->new( GET => 'http://'. $host .'/' ); my...

Fix DID_MEMORY_FUNC_TYPEDEFS error while building a package

$curl->setopt(CURLOPT_UPLOAD,1); res: HTTP/1.1 400 Bad Request Date: Tue, 26 Apr 2016 09:37:31 GMT Content-Type: text/html Content-Length: 267 Connection: close Closing connection #0 ++++++++++++++++++++++++++++++++++++++++++ $curl->setopt(CURL_CUSTOMREQUEST,'PUT'); res: HTTP/1.1 200 OK Date: Tue,...