GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Curl::Share(3) User Contributed Perl Documentation Net::Curl::Share(3)

Net::Curl::Share - Perl interface for curl_share_* functions

 use Net::Curl::Share qw(:constants);

 my $share = Net::Curl::Share->new();
 $share->setopt( CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE );
 $share->setopt( CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS );

 $easy_one->setopt( CURLOPT_SHARE() => $share );

 $easy_two->setopt( CURLOPT_SHARE() => $share );

This module wraps share handle from libcurl and all related functions and constants. It does not export by default anything, but constants can be exported upon request.

 use Net::Curl::Share qw(:constants);

new( [BASE] )
Creates new Net::Curl::Share object. If BASE is specified it will be used as object base, otherwise an empty hash will be used. BASE must be a valid reference which has not been blessed already. It will not be used by the object.

 my $share = Net::Curl::Share->new( [qw(my very private data)] );
    

Calls curl_share_init(3) <https://curl.haxx.se/libcurl/c/curl_share_init.html>.

setopt( OPTION, VALUE )
Set an option. OPTION is a numeric value, use one of CURLSHOPT_* constants. VALUE depends on whatever that option expects.

 $share->setopt( CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE );
    

Calls curl_share_setopt(3) <https://curl.haxx.se/libcurl/c/curl_share_setopt.html>. Throws "Net::Curl::Share::Code" on error.

None of those functions are exported, you must use fully qualified names.
strerror( [WHATEVER], CODE )
Return a string for error code CODE.

 my $message = Net::Curl::Share::strerror( CURLSHE_BAD_OPTION );
    

See curl_share_strerror(3) <https://curl.haxx.se/libcurl/c/curl_share_strerror.html> for more info.

CURLSHOPT_*
Values for setopt().
CURL_LOCK_ACCESS_*
Values passed to lock callbacks. Unused.
CURL_LOCK_DATA_*
Values passed to lock and unlock callbacks. Unused.
CURL_LOCK_DATA_COOKIE, CURL_LOCK_DATA_DNS
Values used to enable/disable shareing.

Reffer to libcurl documentation for more detailed info on each of those.
CURLSHOPT_LOCKFUNC ( CURLSHOPT_USERDATA )
Not supported. Locking is done internally.
CURLSHOPT_UNLOCKFUNC ( CURLSHOPT_USERDATA )
Not supported. (Un)Locking is done internally.

Net::Curl::Share setopt method on failure throws a Net::Curl::Share::Code error object. It has both numeric value and, when used as string, it calls strerror() function to display a nice message.

Net::Curl Net::Curl::Easy Net::Curl::Multi Net::Curl::examples libcurl-share(3) libcurl-errors(3)

Copyright (c) 2011-2015 Przemyslaw Iskra <sparky at pld-linux.org>.

You may opt to use, copy, modify, merge, publish, distribute and/or sell copies of the Software, and permit persons to whom the Software is furnished to do so, under the terms of the MPL or the MIT/X-derivate licenses. You may pick one of these licenses.

2020-03-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.