1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
package WWW::Curl::Easy;
use strict;
use warnings;
use Carp;
our $VERSION = '4.17';
use WWW::Curl ();
use Exporter ();
our @ISA = qw(Exporter);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
our @EXPORT = qw(
);
$WWW::Curl::Easy::headers = "";
$WWW::Curl::Easy::content = "";
sub const_string {
my ($self, $constant) = @_;
return constant($constant);
}
sub AUTOLOAD {
our $AUTOLOAD;
# This AUTOLOAD is used to 'autoload' constants from the constant()
# XS function.
( my $constname = $AUTOLOAD ) =~ s/.*:://;
my $value = constant( $constname );
if($!) {
croak("Undefined subroutine &$AUTOLOAD called");
}
{
no strict 'refs';
*{$AUTOLOAD} = sub { $value };
}
return $value;
}
sub pushopt {
my ($self, $option, $value) = @_;
$self->setopt($option, $value, 1);
}
1;
__END__
Copyright (C) 2000-2005,2008 Daniel Stenberg, Cris Bailiff,
Sebastian Riedel, et al.
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 MIT license.
|