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 /
dist /
IO /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:39
hints
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
ChangeLog
10.44
KB
-r--r--r--
2014-12-27 11:48
IO.bs
0
B
-rw-r--r--
2016-10-10 17:41
IO.c
24.72
KB
-rw-r--r--
2016-10-10 17:39
IO.o
22.16
KB
-rw-r--r--
2016-10-10 17:39
IO.pm
1.36
KB
-r--r--r--
2014-12-27 11:49
IO.xs
13.95
KB
-r--r--r--
2014-12-27 11:49
Makefile
30.63
KB
-rw-r--r--
2016-10-10 17:39
Makefile.PL
1.14
KB
-r--r--r--
2014-12-27 11:48
README
825
B
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:39
poll.c
2.97
KB
-r--r--r--
2014-12-27 11:49
poll.h
1.04
KB
-r--r--r--
2014-12-27 11:48
poll.o
936
B
-rw-r--r--
2016-10-10 17:39
Save
Rename
/* * poll.h * * Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved. * This program is free software; you can redistribute it and/or * modify it under the same terms as Perl itself. * */ #ifndef POLL_H # define POLL_H #if (defined(HAS_POLL) && defined(I_POLL)) || defined(POLLWRBAND) # include <poll.h> #else #ifdef HAS_SELECT /* We shall emulate poll using select */ #define EMULATE_POLL_WITH_SELECT #ifdef poll # undef poll #endif #define poll Perl_my_poll typedef struct pollfd { int fd; short events; short revents; } pollfd_t; #define POLLIN 0x0001 #define POLLPRI 0x0002 #define POLLOUT 0x0004 #define POLLRDNORM 0x0040 #define POLLWRNORM POLLOUT #define POLLRDBAND 0x0080 #define POLLWRBAND 0x0100 #define POLLNORM POLLRDNORM /* Return ONLY events (NON testable) */ #define POLLERR 0x0008 #define POLLHUP 0x0010 #define POLLNVAL 0x0020 int poll (struct pollfd *, unsigned long, int); #ifndef HAS_POLL # define HAS_POLL #endif #endif /* HAS_SELECT */ #endif /* I_POLL */ #endif /* POLL_H */