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 /
symbian /
Delete
Unzip
Name
Size
Permission
Date
Action
ext
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
PerlApp.cpp
15.25
KB
-r--r--r--
2014-12-27 11:49
PerlApp.h
2.3
KB
-r--r--r--
2014-12-27 11:49
PerlApp.hrh
608
B
-r--r--r--
2014-12-27 11:49
PerlAppAif.rss
521
B
-r--r--r--
2014-12-27 11:49
PerlBase.cpp
11.19
KB
-r--r--r--
2014-12-27 11:49
PerlBase.h
4.23
KB
-r--r--r--
2014-12-27 11:49
PerlBase.pod
4.5
KB
-r--r--r--
2014-12-27 11:49
PerlRecog.cpp
1.49
KB
-r--r--r--
2014-12-27 11:49
PerlRecog.mmp
197
B
-r--r--r--
2014-12-27 11:49
PerlUi.cpp
7.63
KB
-r--r--r--
2014-12-27 11:49
PerlUi.h
3.52
KB
-r--r--r--
2014-12-27 11:49
PerlUi.hrh
331
B
-r--r--r--
2014-12-27 11:49
PerlUiS60.rss
2.78
KB
-r--r--r--
2014-12-27 11:49
PerlUiS80.rss
1.89
KB
-r--r--r--
2014-12-27 11:49
PerlUiS90.rss
1.9
KB
-r--r--r--
2014-12-27 11:49
PerlUiUIQ.rss
2.26
KB
-r--r--r--
2014-12-27 11:49
PerlUtil.cpp
2.88
KB
-r--r--r--
2014-12-27 11:49
PerlUtil.h
1.19
KB
-r--r--r--
2014-12-27 11:49
PerlUtil.pod
1.24
KB
-r--r--r--
2014-12-27 11:49
README
558
B
-r--r--r--
2014-12-27 11:49
TODO
6.99
KB
-r--r--r--
2014-12-27 11:49
bld.inf
40
B
-r--r--r--
2014-12-27 11:49
config.pl
27.36
KB
-r--r--r--
2014-12-27 11:49
config.sh
16.55
KB
-r--r--r--
2014-12-27 11:49
cwd.pl
87
B
-r--r--r--
2014-12-27 11:49
demo_pl
3.25
KB
-r--r--r--
2014-12-27 11:49
find_writeable_data.pl
1.41
KB
-r--r--r--
2014-12-27 11:49
hexdump.pl
959
B
-r--r--r--
2014-12-27 11:49
install.cfg
2.32
KB
-r--r--r--
2014-12-27 11:49
makesis.pl
5.41
KB
-r--r--r--
2014-12-27 11:49
port.pl
154
B
-r--r--r--
2014-12-27 11:49
sanity.pl
925
B
-r--r--r--
2014-12-27 11:49
sdk.pl
7.93
KB
-r--r--r--
2014-12-27 11:49
sisify.pl
81.87
KB
-r--r--r--
2014-12-27 11:49
symbian_dll.cpp
639
B
-r--r--r--
2014-12-27 11:49
symbian_proto.h
2.78
KB
-r--r--r--
2014-12-27 11:49
symbian_stubs.c
3.48
KB
-r--r--r--
2014-12-27 11:49
symbian_stubs.h
482
B
-r--r--r--
2014-12-27 11:49
symbian_utils.cpp
13.92
KB
-r--r--r--
2014-12-27 11:49
symbianish.h
7.23
KB
-r--r--r--
2014-12-27 11:49
uid.pl
11
B
-r--r--r--
2014-12-27 11:49
version.pl
494
B
-r--r--r--
2014-12-27 11:49
xsbuild.pl
27.3
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
/* * symbian_proto.h * * Copyright (c) Nokia 2004-2005. All rights reserved. * This code is licensed under the same terms as Perl itself. * */ #ifndef SYMBIAN_PROTO_H #define SYMBIAN_PROTO_H #include <sys/types.h> #include <sys/times.h> #if defined(PERL_CORE) || defined(PERL_EXT) /* We can't include the <string.h> unconditionally * since it has prototypes conflicting with the gcc builtins. */ extern void *memchr(const void *s, int c, size_t n); #ifndef DL_SYMBIAN_XS /* dl_symbian.xs needs to see the C++ prototype of memset() instead */ extern void *memset(void *s, int c, size_t n); extern size_t strlen(const char *s); #endif extern void *memmove(void *dst, const void *src, size_t n); extern char *strcat(char *dst, const char *src); extern char *strchr(const char *s, int c); extern char *strerror(int errnum); extern int strncmp(const char *s1, const char *s2, size_t n); extern char *strrchr(const char *s, int c); extern int setmode(int fd, long flags); #ifndef __GNUC__ #define memcpy _e32memcpy /* GCC intrinsic */ extern void *memcpy(const void *s1, const void *s2, size_t n); extern int strcmp(const char *s1, const char *s2); extern char* strcpy(char *dst, const char *src); extern char* strncpy(char *dst, const char *src, size_t n); #endif #endif /* PERL_CORE || PERL_EXT */ #if defined(SYMBIAN_DLL_CPP) || defined(SYMBIAN_UTILS_CPP) || defined(PERLBASE_CPP) || defined(PERLUTIL_CPP) # define PERL_SYMBIAN_START_EXTERN_C extern "C" { # define PERL_SYMBIAN_IMPORT_C IMPORT_C /* Declarations have IMPORT_C, definitions have EXPORT_C. */ # define PERL_SYMBIAN_END_EXTERN_C } #else # define PERL_SYMBIAN_START_EXTERN_C # define PERL_SYMBIAN_IMPORT_C # define PERL_SYMBIAN_END_EXTERN_C #endif PERL_SYMBIAN_START_EXTERN_C PERL_SYMBIAN_IMPORT_C int symbian_sys_init(int *argcp, char ***argvp); PERL_SYMBIAN_IMPORT_C void init_os_extras(void); PERL_SYMBIAN_IMPORT_C void* symbian_get_vars(void); PERL_SYMBIAN_IMPORT_C void symbian_set_vars(const void *); PERL_SYMBIAN_IMPORT_C void symbian_unset_vars(void); PERL_SYMBIAN_IMPORT_C SSize_t symbian_read_stdin(const int fd, char *b, int n); PERL_SYMBIAN_IMPORT_C SSize_t symbian_write_stdout(const int fd, const char *b, int n); PERL_SYMBIAN_IMPORT_C char* symbian_get_error_string(const int error); PERL_SYMBIAN_IMPORT_C void symbian_sleep_usec(const long usec); PERL_SYMBIAN_IMPORT_C int symbian_get_cpu_time(long* sec, long* usec); PERL_SYMBIAN_IMPORT_C clock_t symbian_times(struct tms* buf); PERL_SYMBIAN_IMPORT_C int symbian_usleep(unsigned int usec); PERL_SYMBIAN_IMPORT_C int symbian_do_aspawn(void* vreally, void *vmark, void* sp); PERL_SYMBIAN_IMPORT_C int symbian_do_spawn(const char* command); PERL_SYMBIAN_IMPORT_C int symbian_do_spawn_nowait(const char* command); PERL_SYMBIAN_END_EXTERN_C #endif /* !SYMBIAN_PROTO_H */