view release on metacpan or search on metacpan
lib/Nabaztag.pm view on Meta::CPAN
It makes great use of LWP::Simple to interact with the rabbit.
PROXY issues:
If you're behind a proxy, see LWP::Simple proxy issues to know how to deal with that.
Basically, set env variable HTTP_PROXY to your proxi url in order to make it work.
For instance : export HTTP_PROXY=http://my.proxy.company:8080/
=head1 SYNOPSIS
Commandline:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/CUPS.pm view on Meta::CPAN
HTTP_PAYMENT_REQUIRED
HTTP_POST
HTTP_POST_RECV
HTTP_POST_SEND
HTTP_PRECONDITION
HTTP_PROXY_AUTHENTICATION
HTTP_PUT
HTTP_PUT_RECV
HTTP_REQUESTED_RANGE
HTTP_REQUEST_TIMEOUT
HTTP_REQUEST_TOO_LARGE
lib/Net/CUPS.pm view on Meta::CPAN
HTTP_PAYMENT_REQUIRED
HTTP_POST
HTTP_POST_RECV
HTTP_POST_SEND
HTTP_PRECONDITION
HTTP_PROXY_AUTHENTICATION
HTTP_PUT
HTTP_PUT_RECV
HTTP_REQUESTED_RANGE
HTTP_REQUEST_TIMEOUT
HTTP_REQUEST_TOO_LARGE
view all matches for this distribution
view release on metacpan or search on metacpan
0.40 2019-07-12T10:42:00Z
[Slaven ReziÄ <slaven@rezic.de>]
- Fixed the failing test old-10errbuf.t.
[Stanislaw Pusep <stas@sysd.org>]
- Fixed tests failing due to HTTP_PROXY setting;
- Synced symbols-in-versions from libcurl/7.65.1.
[Yuni Kim <yunik@apple.com>]
- Support CURLOPT_CONNECT_TO.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/DHCP/Constants.pm view on Meta::CPAN
'DHO_REMOTE_STATISTICS_SERVER' => 131,
'DHO_VLAN_ID' => 132,
'DHO_L2_PRIORITY' => 133,
'DHO_DSCP' => 134,
'DHO_PXE' => 135,
'DHO_HTTP_PROXY_FORPHONES' => 135,
'DHO_OPTION_PANA_AGENT' => 136,
'DHO_OPTION_PANA_V4_LOST' => 137,
'DHO_OPTION_CAPWAP_AC_V4' => 138,
'DHO_OPTION_IPV4_ADDRESS_MOS' => 139,
lib/Net/DHCP/Constants.pm view on Meta::CPAN
(130) DHO_DISCRIMINATION_STRING
(131) DHO_REMOTE_STATISTICS_SERVER
(132) DHO_VLAN_ID
(133) DHO_L2_PRIORITY
(134) DHO_DSCP
(135) DHO_HTTP_PROXY_FORPHONES
(136) DHO_OPTION_PANA_AGENT
(137) DHO_OPTION_PANA_V4_LOST
(138) DHO_OPTION_CAPWAP_AC_V4
(139) DHO_OPTION_IPV4_ADDRESS_MOS
(140) DHO_OPTION_IPV4_FQDN_MOS
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/FullAuto/ISets/Local/Ampache_is.pm view on Meta::CPAN
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME \\x24document_root\\x24fastcgi_script_name;
# Mitigate HTTPOXY https://httpoxy.org/
fastcgi_param HTTP_PROXY \\x22\\x22;
# has to be set to on if encryption (https) is used:
# fastcgi_param HTTPS on;
fastcgi_split_path_info ^(.+?\\x5C.php)(/.\\x2A)\\x24;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Proxy/Type.pm view on Meta::CPAN
use IO::Select;
use constant {
UNKNOWN_PROXY => 4294967296,
DEAD_PROXY => 0,
HTTP_PROXY => 1,
SOCKS4_PROXY => 2,
SOCKS5_PROXY => 4,
HTTPS_PROXY => 8,
CONNECT_PROXY => 16,
};
our $VERSION = '0.09';
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(HTTP_PROXY HTTPS_PROXY CONNECT_PROXY SOCKS4_PROXY SOCKS5_PROXY UNKNOWN_PROXY DEAD_PROXY);
our %EXPORT_TAGS = (types => [qw(HTTP_PROXY HTTPS_PROXY CONNECT_PROXY SOCKS4_PROXY SOCKS5_PROXY UNKNOWN_PROXY DEAD_PROXY)]);
our $CONNECT_TIMEOUT = 5;
our $WRITE_TIMEOUT = 5;
our $READ_TIMEOUT = 5;
our $URL = 'http://www.google.com/';
lib/Net/Proxy/Type.pm view on Meta::CPAN
our $HTTPS_KEYWORD = 'google';
our $HTTP_VER = '1.1';
our %NAME = (
UNKNOWN_PROXY, 'UNKNOWN_PROXY',
DEAD_PROXY, 'DEAD_PROXY',
HTTP_PROXY, 'HTTP_PROXY',
HTTPS_PROXY, 'HTTPS_PROXY',
CONNECT_PROXY, 'CONNECT_PROXY',
SOCKS4_PROXY, 'SOCKS4_PROXY',
SOCKS5_PROXY, 'SOCKS5_PROXY',
);
lib/Net/Proxy/Type.pm view on Meta::CPAN
}
my @checkers = (
CONNECT_PROXY, \&is_connect,
HTTPS_PROXY, \&is_https,
HTTP_PROXY, \&is_http,
SOCKS4_PROXY, \&is_socks4,
SOCKS5_PROXY, \&is_socks5
);
sub _get
lib/Net/Proxy/Type.pm view on Meta::CPAN
warn "$proxy2 is connect proxy";
}
elsif ($type == HTTPS_PROXY) {
warn "$proxy2 is https proxy";
}
elsif($type == HTTP_PROXY) {
warn "$proxy2 is http proxy";
}
elsif($type == SOCKS4_PROXY) {
warn "$proxy2 is socks4 proxy";
}
lib/Net/Proxy/Type.pm view on Meta::CPAN
=item $proxytype->get($proxyaddress, $checkmask=undef)
=item $proxytype->get($proxyhost, $proxyport, $checkmask=undef)
Get proxy type. Checkmask allows to check proxy only for specified types, its value can be any
combination of the valid proxy types constants (HTTPS_PROXY, HTTP_PROXY, CONNECT_PROXY, SOCKS4_PROXY, SOCKS5_PROXY for now),
joined with the binary OR (|) operator. Will check for all types if mask not defined. In scalar
context returned value is proxy type - one of the module constants descibed below. In list context
returned value is an array with proxy type as first element and connect time in seconds as second.
Example:
# check only for socks type
# if it is HTTP_PROXY, HTTPS_PROXY or CONNECT_PROXY returned value will be UNKNOWN_PROXY
# because there is no check for HTTP_PROXY, HTTPS_PROXY and CONNECT_PROXY
my $type = $proxytype->get('localhost:1080', SOCKS4_PROXY | SOCKS5_PROXY);
=item $proxytype->get_as_string($proxyaddress, $checkmask=undef)
=item $proxytype->get_as_string($proxyhost, $proxyport, $checkmask=undef)
lib/Net/Proxy/Type.pm view on Meta::CPAN
=item UNKNOWN_PROXY
=item DEAD_PROXY
=item HTTP_PROXY
=item HTTPS_PROXY
=item CONNECT_PROXY
view all matches for this distribution
view release on metacpan or search on metacpan
script/connect-tunnel view on Meta::CPAN
die "LWP::UserAgent required to run connect-tunnel\n" if $@;
# default configuration
our %CONF = (
'proxy-authentication' => '',
'proxy' => $ENV{HTTP_PROXY},
'user-agent' => "connect-tunnel/$Net::Proxy::VERSION",
'verbose' => 0,
);
#
script/connect-tunnel view on Meta::CPAN
Mmm, such a long command line would perfectly fit in an alias or a F<.BAT>
file. C<;-)>
=head1 ENVIRONMENT VARIABLES
The environment variable C<HTTP_PROXY> can be used to provide
a proxy definition.
The environment variable is overriden by the B<--proxy> option,
if passed to B<connect-tunnel>.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/SMS/O2_DE.pm view on Meta::CPAN
length, and you are on your own!
This implementation is based on the module L<Net::SMS::O2>.
The HTTP requests are sent using L<Net::SMS::WEB> which uses L<LWP::UserAgent> module. If you are using a
proxy, you may need to set the HTTP_PROXY environment variable for this to
work (see L<LWP::UserAgent>).
=head1 TODO
There is no check if you entered a valid tel number or frequency or other fields.
view all matches for this distribution
view release on metacpan or search on metacpan
L<action> method, passing a L<Net::SMS::Web::Action> object which should
correspond to the web form acions that are required to send an SMS message via
the web gateway in question.
The HTTP requests are sent using the LWP::UserAgent module. If you are using a
proxy, you may need to set the HTTP_PROXY environment variable for this to
work (see L<LWP::UserAgent>).
=cut
#------------------------------------------------------------------------------
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Net/Domain/TldMozilla.pm view on Meta::CPAN
=head1 DESCRIPTION
TLD is acquired and returned from the source open to the public on the Mozilla site.
Please set HTTP_PROXY of the environment variable if you use Proxy.
$ENV{HTTP_PROXY}= '192.168.0.1:8080';
=head1 METHODS
=head2 get_tld
view all matches for this distribution
view release on metacpan or search on metacpan
auto/modules view on Meta::CPAN
HTTP_MODULES="$HTTP_MODULES $HTTP_SSL_MODULE"
HTTP_DEPS="$HTTP_DEPS $HTTP_SSL_DEPS"
HTTP_SRCS="$HTTP_SRCS $HTTP_SSL_SRCS"
fi
if [ $HTTP_PROXY = YES ]; then
have=NGX_HTTP_X_FORWARDED_FOR . auto/have
#USE_MD5=YES
HTTP_MODULES="$HTTP_MODULES $HTTP_PROXY_MODULE"
HTTP_DEPS="$HTTP_DEPS $HTTP_PROXY_DEPS"
HTTP_SRCS="$HTTP_SRCS $HTTP_PROXY_SRCS"
fi
if [ $HTTP_FASTCGI = YES ]; then
HTTP_MODULES="$HTTP_MODULES $HTTP_FASTCGI_MODULE"
HTTP_SRCS="$HTTP_SRCS $HTTP_FASTCGI_SRCS"
view all matches for this distribution
view release on metacpan or search on metacpan
4.11 Wed 6 Sep 14:20:17 CEST 2023
- Bugfix: do not encode in UTF-8 a second time input file for Discovery API
4.10 Wed 30 Aug 07:23:29 CEST 2023
- Bugfix: correctly handle HTTP_PROXY & HTTPS_PROXY environment variables
4.09 Mon 17 Jul 11:33:46 CEST 2023
- Bugfix: OPP to skip keys when they are undef
- Bugfix: add more Perl deps for installation
- New: onyphe to add -import argument (0 or 1 to disable or enable import for on-demand scans)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/POE/Component/Client/HTTP.pm view on Meta::CPAN
Protocol => 'HTTP/0.9', # defaults to 'HTTP/1.1'
Timeout => 60, # defaults to 180 seconds
MaxSize => 16384, # defaults to entire response
Streaming => 4096, # defaults to 0 (off)
FollowRedirects => 2, # defaults to 0 (off)
Proxy => "http://localhost:80", # defaults to HTTP_PROXY env. variable
NoProxy => [ "localhost", "127.0.0.1" ], # defs to NO_PROXY env. variable
BindAddr => "12.34.56.78", # defaults to INADDR_ANY
);
$kernel->post(
lib/POE/Component/Client/HTTP.pm view on Meta::CPAN
=item Proxy => $proxy_url,$proxy_url,...
C<Proxy> specifies one or more proxy hosts that requests will be
passed through. If not specified, proxy servers will be taken from
the HTTP_PROXY (or http_proxy) environment variable. No proxying will
occur unless Proxy is set or one of the environment variables exists.
The proxy can be specified either as a host and port, or as one or
more URLs. Proxy URLs must specify the proxy port, even if it is 80.
lib/POE/Component/Client/HTTP.pm view on Meta::CPAN
additional request.
=head1 ENVIRONMENT
POE::Component::Client::HTTP uses two standard environment variables:
HTTP_PROXY and NO_PROXY.
HTTP_PROXY sets the proxy server that Client::HTTP will forward
requests through. NO_PROXY sets a list of hosts that will not be
forwarded through a proxy.
See the Proxy and NoProxy constructor parameters for more information
about these variables.
view all matches for this distribution
view release on metacpan or search on metacpan
t/04_timeout.t view on Meta::CPAN
);
# We are testing against a localhost server.
# Don't proxy, because localhost takes on new meaning.
BEGIN {
delete $ENV{HTTP_PROXY};
delete $ENV{http_proxy};
}
POE::Session->create(
inline_states => {
view all matches for this distribution
view release on metacpan or search on metacpan
xt/001-server-with-client.t view on Meta::CPAN
use Data::Dumper;
use PONAPI::Server;
use IPC::Cmd qw/can_run/;
delete @ENV{qw/ HTTP_PROXY http_proxy /};
# Rather than just testing PONAPI::Client, let's make sure we're
# working on other backends too. We always test PONAPI::Client,
# but if available, we'll also test HTTP::Tiny and curl on the
# command line.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Paws/ApiGateway/Integration.pm view on Meta::CPAN
=item * C<HTTP>: for integrating the API method request with an HTTP
endpoint, including a private HTTP endpoint within a VPC. This
integration is also referred to as the HTTP custom integration.
=item * C<HTTP_PROXY>: for integrating the API method request with an
HTTP endpoint, including a private HTTP endpoint within a VPC, with the
client request passed through as-is. This is also referred to as the
HTTP proxy integration.
=item * C<MOCK>: for integrating the API method request with API
lib/Paws/ApiGateway/Integration.pm view on Meta::CPAN
are supported as well as custom ports above 1024. An HTTP or HTTP proxy
integration with a C<connectionType> of C<VPC_LINK> is referred to as a
private integration and uses a VpcLink to connect API Gateway to a
network load balancer of a VPC.
Valid values are: C<"HTTP">, C<"AWS">, C<"MOCK">, C<"HTTP_PROXY">, C<"AWS_PROXY">
=head2 Uri => Str
Specifies Uniform Resource Identifier (URI) of the integration
endpoint.
=over
=item *
For C<HTTP> or C<HTTP_PROXY> integrations, the URI must be a fully
formed, encoded HTTP(S) URL according to the RFC-3986 specification
(https://en.wikipedia.org/wiki/Uniform_Resource_Identifier), for either
standard integration, where C<connectionType> is not C<VPC_LINK>, or
private integration, where C<connectionType> is C<VPC_LINK>. For a
private HTTP integration, the URI is not used for routing.
view all matches for this distribution
view release on metacpan or search on metacpan
share/utils/cpanm view on Meta::CPAN
$fatpacked{"File/pushd.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'FILE_PUSHD';
use strict;use warnings;package File::pushd;our$VERSION='1.009';our@EXPORT=qw(pushd tempd);our@ISA=qw(Exporter);use Exporter;use Carp;use Cwd qw(getcwd abs_path);use File::Path qw(rmtree);use File::Temp qw();use File::Spec;use overload q{""}=>sub {...
FILE_PUSHD
$fatpacked{"HTTP/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'HTTP_TINY';
package HTTP::Tiny;use strict;use warnings;our$VERSION='0.056';use Carp ();my@attributes;BEGIN {@attributes=qw(cookie_jar default_headers http_proxy https_proxy keep_alive local_address max_redirect max_size proxy no_proxy timeout SSL_options verif...
sub $sub_name {
my (\$self, \$url, \$args) = \@_;
\@_ == 2 || (\@_ == 3 && ref \$args eq 'HASH')
or Carp::croak(q/Usage: \$http->$sub_name(URL, [HASHREF])/ . "\n");
return \$self->request('$req_method', \$url, \$args || {});
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Perl/Dist/WiX.pm view on Meta::CPAN
agent => "$class/" . ( $VERSION || '0.00' ),
timeout => 30,
show_progress => 1,
);
$ENV{HTTP_PROXY} and $ua->proxy( http => $ENV{HTTP_PROXY} );
return $ua;
} ## end sub _build_user_agent
view all matches for this distribution
view release on metacpan or search on metacpan
ext/libwww-perl/lib/LWP/Simple.pm view on Meta::CPAN
return $buffer
}
sub _make_request (Str $method, Str $uri) {
my ($h,$p,$u) = split_uri($uri);
if (%*ENV<HTTP_PROXY>) {
$u = $uri;
};
join "\n", # $CRLF,
"$method $u HTTP/1.0",
ext/libwww-perl/lib/LWP/Simple.pm view on Meta::CPAN
sub _send_request (Str $host, Int $port, Str $request) {
# XXX clean up!
my ($h,$p) = ($host,$port);
my $http_proxy = %*ENV<HTTP_PROXY> // %*ENV<http_proxy>;
if $http_proxy.chars {
if $http_proxy ~~ rx:P5!http://()(:(\d+))?$! {
$h = $0;
$p = $1 || 80;
} else {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Plack/App/FakeApache1/Constants.pm view on Meta::CPAN
HTTP_PAYMENT_REQUIRED
HTTP_FORBIDDEN
HTTP_NOT_FOUND
HTTP_METHOD_NOT_ALLOWED
HTTP_NOT_ACCEPTABLE
HTTP_PROXY_AUTHENTICATION_REQUIRED
HTTP_REQUEST_TIME_OUT
HTTP_CONFLICT
HTTP_GONE
HTTP_LENGTH_REQUIRED
HTTP_PRECONDITION_FAILED
lib/Plack/App/FakeApache1/Constants.pm view on Meta::CPAN
HTTP_PAYMENT_REQUIRED
HTTP_FORBIDDEN
HTTP_NOT_FOUND
HTTP_METHOD_NOT_ALLOWED
HTTP_NOT_ACCEPTABLE
HTTP_PROXY_AUTHENTICATION_REQUIRED
HTTP_REQUEST_TIME_OUT
HTTP_CONFLICT
HTTP_GONE
HTTP_LENGTH_REQUIRED
HTTP_PRECONDITION_FAILED
lib/Plack/App/FakeApache1/Constants.pm view on Meta::CPAN
sub HTTP_PAYMENT_REQUIRED { 402; }
sub HTTP_FORBIDDEN { 403; }
sub HTTP_NOT_FOUND { 404; }
sub HTTP_METHOD_NOT_ALLOWED { 405; }
sub HTTP_NOT_ACCEPTABLE { 406; }
sub HTTP_PROXY_AUTHENTICATION_REQUIRED { 407; }
sub HTTP_REQUEST_TIME_OUT { 408; }
sub HTTP_CONFLICT { 409; }
sub HTTP_GONE { 410; }
sub HTTP_LENGTH_REQUIRED { 411; }
sub HTTP_PRECONDITION_FAILED { 412; }
lib/Plack/App/FakeApache1/Constants.pm view on Meta::CPAN
=head2 HTTP_METHOD_NOT_ALLOWED
=head2 HTTP_NOT_ACCEPTABLE
=head2 HTTP_PROXY_AUTHENTICATION_REQUIRED
=head2 HTTP_REQUEST_TIME_OUT
=head2 HTTP_CONFLICT
view all matches for this distribution
view release on metacpan or search on metacpan
local/lib/perl5/HTTP/Status.pm view on Meta::CPAN
HTTP_PAYMENT_REQUIRED (402)
HTTP_FORBIDDEN (403)
HTTP_NOT_FOUND (404)
HTTP_METHOD_NOT_ALLOWED (405)
HTTP_NOT_ACCEPTABLE (406)
HTTP_PROXY_AUTHENTICATION_REQUIRED (407)
HTTP_REQUEST_TIMEOUT (408)
HTTP_CONFLICT (409)
HTTP_GONE (410)
HTTP_LENGTH_REQUIRED (411)
HTTP_PRECONDITION_FAILED (412)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Plack/Middleware/TazXSLT.pm view on Meta::CPAN
=item user_agent
HTTP user agent to fetch the the necessary stylesheets. Defaults to
an LWP::UserAgent with its timeout set to I<timeout> seconds and act
according to the environment variables HTTP_PROXY and HTTPS_PROXY.
It is possible to provide an useragent object of another class as long
as it respond to a call of I<get> and returns an object that provides
the method calls I<is_redirect>, I<is_success>, I<content_length>,
I<content_length>, I<content_is_xml> and behaves semantically similar
view all matches for this distribution
view release on metacpan or search on metacpan
== 0.7.2 (2006/06/02) ==
=== Core ===
* Make Cookies instances Singleton (suggested by Yappo)
* Calls env_proxy on Plagger::UserAgent so that HTTP_PROXY env variable is respected (woremacx)
* Add w3m cookie files support
* Aggregator::Simple globally overrides LibXML parser with Liberal if possible
* Recommend newest XML::Liberal 0.11 so that liberal XML parsing would take the best effect
* $ua->mirror can take $req so that plugins can add custom HTTP headers like Referer. #208
* Change flv MIME value to video/x-flv
view all matches for this distribution
view release on metacpan or search on metacpan
examples/rrd-server/cgi-bin/rrd-server.cgi view on Meta::CPAN
&& "$ENV{RRD_SECRET}" eq "$param->{secret}") {
$host = $param->{target};
} else {
# Check for HTTP proxy source addresses
for (qw(HTTP_X_FORWARDED_FOR HTTP_VIA HTTP_CLIENT_IP HTTP_PROXY_CONNECTION
FORWARDED_FOR X_FORWARDED_FOR X_HTTP_FORWARDED_FOR HTTP_FORWARDED)) {
if (defined $ENV{$_} && $ENV{$_} =~ /([\d\.]+)/) {
my $ip = $1;
if (isIP($ip)) {
$remote_addr = $ip;
view all matches for this distribution
view release on metacpan or search on metacpan
redland/raptor/src/raptor_www_libfetch.c view on Meta::CPAN
raptor_www_libfetch_fetch(raptor_www *www)
{
FILE *stream;
if(www->proxy) {
setenv("HTTP_PROXY", www->proxy, 0);
setenv("FTP_PROXY", www->proxy, 0);
}
if(www->user_agent)
setenv("HTTP_USER_AGENT", www->user_agent, 0);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Reflexive/Client/HTTP.pm view on Meta::CPAN
callback on L</request>. See L<HTTP::Response> for details here.
=head2 proxy
C<proxy> specifies one or more proxy hosts that requests will be passed
through. If not specified, proxy servers will be taken from the B<HTTP_PROXY>
(or B<http_proxy>) environment variable. No proxying will occur unless
C<proxy> is set or one of the environment variables exists.
The proxy can be specified either as a host and port, or as one or more URLs.
C<proxy> URLs must specify the proxy port, even if it is 80.
view all matches for this distribution
view release on metacpan or search on metacpan
vendor/rocksdb/build_tools/rocksdb-lego-determinator view on Meta::CPAN
CLANG="USE_CLANG=1"
LITE="OPT=\"-DROCKSDB_LITE -g\""
TSAN="COMPILE_WITH_TSAN=1"
UBSAN="COMPILE_WITH_UBSAN=1"
DISABLE_JEMALLOC="DISABLE_JEMALLOC=1"
HTTP_PROXY="https_proxy=http://fwdproxy.29.prn1:8080 http_proxy=http://fwdproxy.29.prn1:8080 ftp_proxy=http://fwdproxy.29.prn1:8080"
SETUP_JAVA_ENV="export $HTTP_PROXY; export JAVA_HOME=/usr/local/jdk-8u60-64/; export PATH=\$JAVA_HOME/bin:\$PATH"
PARSER="'parser':'python build_tools/error_filter.py $1'"
CONTRUN_NAME="ROCKSDB_CONTRUN_NAME"
# This code is getting called under various scenarios. What we care about is to
view all matches for this distribution
view release on metacpan or search on metacpan
bin/wsdl2perl.pl view on Meta::CPAN
my $url = $ARGV[0];
pod2usage( -exit => 1 , verbose => 2 ) if ($opt{help});
pod2usage( -exit => 1 , verbose => 1 ) if not ($url);
local $ENV{HTTP_PROXY} = $opt{proxy} if $opt{proxy};
local $ENV{HTTPS_PROXY} = $opt{proxy} if $opt{proxy};
my $lwp = LWP::UserAgent->new(
$opt{keep_alive}
? ( keep_alive => 1 )
bin/wsdl2perl.pl view on Meta::CPAN
base_path b Path to create classes in.
Default: .
typemap_include mi File to include in typemap. Must eval() to a valid
perl hash (not a hash ref !).
proxy x HTTP(S) proxy to use (if any). wsdl2perl will also
use the proxy settings specified via the HTTP_PROXY
and HTTPS_PROXY environment variables.
keep_alive Use http keep_alive.
user Username for HTTP authentication
password Password. wsdl2perl will prompt if not given.
generator g Generator to use.
view all matches for this distribution
view release on metacpan or search on metacpan
$fatpacked{"File/pushd.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'FILE_PUSHD';
use strict;use warnings;package File::pushd;our$VERSION='1.009';our@EXPORT=qw(pushd tempd);our@ISA=qw(Exporter);use Exporter;use Carp;use Cwd qw(getcwd abs_path);use File::Path qw(rmtree);use File::Temp qw();use File::Spec;use overload q{""}=>sub {...
FILE_PUSHD
$fatpacked{"HTTP/Tiny.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'HTTP_TINY';
package HTTP::Tiny;use strict;use warnings;our$VERSION='0.056';use Carp ();my@attributes;BEGIN {@attributes=qw(cookie_jar default_headers http_proxy https_proxy keep_alive local_address max_redirect max_size proxy no_proxy timeout SSL_options verif...
sub $sub_name {
my (\$self, \$url, \$args) = \@_;
\@_ == 2 || (\@_ == 3 && ref \$args eq 'HASH')
or Carp::croak(q/Usage: \$http->$sub_name(URL, [HASHREF])/ . "\n");
return \$self->request('$req_method', \$url, \$args || {});
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SPVM/Mojo/UserAgent/Proxy.pm view on Meta::CPAN
=head2 detect
C<method detect : void ();>
Check environment variables C<HTTP_PROXY>, C<http_proxy>, C<HTTPS_PROXY>, C<https_proxy>, C<NO_PROXY> and C<no_proxy>
for proxy information. Automatic proxy detection can be enabled with the C<SPVM_MOJO_PROXY> environment variable.
=head2 is_needed
C<method is_needed : int ($domain : string) ;>
view all matches for this distribution