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 /
ext /
SDBM_File /
sdbm /
Delete
Unzip
Name
Size
Permission
Date
Action
CHANGES
900
B
-r--r--r--
2014-12-27 11:48
COMPARE
2.77
KB
-r--r--r--
2014-12-27 11:48
Makefile
22.19
KB
-rw-r--r--
2016-10-10 17:40
Makefile.PL
1.3
KB
-r--r--r--
2014-12-27 11:49
README
11.16
KB
-r--r--r--
2014-12-27 11:48
README.too
436
B
-r--r--r--
2014-12-27 11:48
biblio
1013
B
-r--r--r--
2014-12-27 11:48
dba.c
1.26
KB
-r--r--r--
2014-12-27 11:48
dbd.c
1.69
KB
-r--r--r--
2014-12-27 11:48
dbe.1
1.42
KB
-r--r--r--
2014-12-27 11:48
dbe.c
9.67
KB
-r--r--r--
2014-12-27 11:48
dbu.c
4.17
KB
-r--r--r--
2014-12-27 11:48
grind
201
B
-r--r--r--
2014-12-27 11:48
hash.c
923
B
-r--r--r--
2014-12-27 11:48
hash.o
2.05
KB
-rw-r--r--
2016-10-10 17:40
libsdbm.a
16.76
KB
-rwxr-xr-x
2016-10-10 17:40
linux.patches
1.4
KB
-r--r--r--
2014-12-27 11:48
makefile.sdbm
1.13
KB
-r--r--r--
2014-12-27 11:48
pair.c
5.36
KB
-r--r--r--
2014-12-27 11:48
pair.h
719
B
-r--r--r--
2014-12-27 11:48
pair.o
4.63
KB
-rw-r--r--
2016-10-10 17:40
readme.ms
11.39
KB
-r--r--r--
2014-12-27 11:48
sdbm.3
9.05
KB
-r--r--r--
2014-12-27 11:48
sdbm.c
11.66
KB
-r--r--r--
2014-12-27 11:48
sdbm.h
6.85
KB
-r--r--r--
2014-12-27 11:48
sdbm.o
9.52
KB
-rw-r--r--
2016-10-10 17:40
tune.h
441
B
-r--r--r--
2014-12-27 11:48
util.c
713
B
-r--r--r--
2014-12-27 11:48
Save
Rename
/* * sdbm - ndbm work-alike hashed database library * based on Per-Ake Larson's Dynamic Hashing algorithms. BIT 18 (1978). * author: oz@nexus.yorku.ca * status: public domain. */ #define DBLKSIZ 4096 #define PBLKSIZ 1024 #define PAIRMAX 1008 /* arbitrary on PBLKSIZ-N */ #define SPLTMAX 10 /* maximum allowed splits */ /* for a single insertion */ #ifdef VMS #define DIRFEXT ".sdbm_dir" #else #define DIRFEXT ".dir" #endif #define PAGFEXT ".pag" typedef struct { int dirf; /* directory file descriptor */ int pagf; /* page file descriptor */ int flags; /* status/error flags, see below */ long maxbno; /* size of dirfile in bits */ long curbit; /* current bit number */ long hmask; /* current hash mask */ long blkptr; /* current block for nextkey */ int keyptr; /* current key for nextkey */ long blkno; /* current page to read/write */ long pagbno; /* current page in pagbuf */ char pagbuf[PBLKSIZ]; /* page file block buffer */ long dirbno; /* current block in dirbuf */ char dirbuf[DBLKSIZ]; /* directory file block buffer */ } DBM; #define DBM_RDONLY 0x1 /* data base open read-only */ #define DBM_IOERR 0x2 /* data base I/O error */ /* * utility macros */ #define sdbm_rdonly(db) ((db)->flags & DBM_RDONLY) #define sdbm_error(db) ((db)->flags & DBM_IOERR) #define sdbm_clearerr(db) ((db)->flags &= ~DBM_IOERR) /* ouch */ #define sdbm_dirfno(db) ((db)->dirf) #define sdbm_pagfno(db) ((db)->pagf) typedef struct { const char *dptr; int dsize; } datum; EXTCONST datum nullitem #ifdef DOINIT = {0, 0} #endif ; #if defined(__STDC__) || defined(__cplusplus) || defined(CAN_PROTOTYPE) #define proto(p) p #else #define proto(p) () #endif /* * flags to sdbm_store */ #define DBM_INSERT 0 #define DBM_REPLACE 1 /* * ndbm interface */ extern DBM *sdbm_open proto((char *, int, int)); extern void sdbm_close proto((DBM *)); extern datum sdbm_fetch proto((DBM *, datum)); extern int sdbm_delete proto((DBM *, datum)); extern int sdbm_store proto((DBM *, datum, datum, int)); extern datum sdbm_firstkey proto((DBM *)); extern datum sdbm_nextkey proto((DBM *)); extern int sdbm_exists proto((DBM *, datum)); /* * other */ extern DBM *sdbm_prep proto((char *, char *, int, int)); extern long sdbm_hash proto((const char *, int)); #ifndef SDBM_ONLY #define dbm_open sdbm_open #define dbm_close sdbm_close #define dbm_fetch sdbm_fetch #define dbm_store sdbm_store #define dbm_delete sdbm_delete #define dbm_firstkey sdbm_firstkey #define dbm_nextkey sdbm_nextkey #define dbm_error sdbm_error #define dbm_clearerr sdbm_clearerr #endif /* Most of the following is stolen from perl.h. We don't include perl.h here because we just want the portability parts of perl.h, not everything else. */ #ifndef H_PERL /* Include guard */ #include "embed.h" /* Follow all the global renamings. */ /* * The following contortions are brought to you on behalf of all the * standards, semi-standards, de facto standards, not-so-de-facto standards * of the world, as well as all the other botches anyone ever thought of. * The basic theory is that if we work hard enough here, the rest of the * code can be a lot prettier. Well, so much for theory. Sorry, Henry... */ #include <errno.h> #ifdef HAS_SOCKET # ifdef I_NET_ERRNO # include <net/errno.h> # endif #endif #if defined(__STDC__) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) # define STANDARD_C 1 #endif #include <stdio.h> #include <ctype.h> #include <setjmp.h> #if defined(I_UNISTD) #include <unistd.h> #endif #ifdef VMS # include <file.h> # include <unixio.h> #endif #ifdef I_SYS_PARAM # if !defined(MSDOS) && !defined(WIN32) && !defined(VMS) # ifdef PARAM_NEEDS_TYPES # include <sys/types.h> # endif # include <sys/param.h> # endif #endif #ifndef _TYPES_ /* If types.h defines this it's easy. */ # ifndef major /* Does everyone's types.h define this? */ # include <sys/types.h> # endif #endif #include <sys/stat.h> #ifndef SEEK_SET # ifdef L_SET # define SEEK_SET L_SET # else # define SEEK_SET 0 /* Wild guess. */ # endif #endif /* Use all the "standard" definitions? */ #if defined(STANDARD_C) && defined(I_STDLIB) # include <stdlib.h> #endif /* STANDARD_C */ #define MEM_SIZE Size_t /* This comes after <stdlib.h> so we don't try to change the standard * library prototypes; we'll use our own instead. */ #if defined(MYMALLOC) && !defined(PERL_POLLUTE_MALLOC) # define malloc Perl_malloc # define calloc Perl_calloc # define realloc Perl_realloc # define free Perl_mfree #ifdef __cplusplus extern "C" { #endif Malloc_t Perl_malloc proto((MEM_SIZE nbytes)); Malloc_t Perl_calloc proto((MEM_SIZE elements, MEM_SIZE size)); Malloc_t Perl_realloc proto((Malloc_t where, MEM_SIZE nbytes)); Free_t Perl_mfree proto((Malloc_t where)); #ifdef __cplusplus } #endif #endif /* MYMALLOC */ #ifdef I_STRING # ifndef __ultrix__ # include <string.h> # endif #else # include <strings.h> #endif #ifdef I_MEMORY #include <memory.h> #endif #ifdef __cplusplus #define HAS_MEMCPY #endif #ifdef HAS_MEMCPY # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) # ifndef memcpy extern char * memcpy proto((char*, char*, int)); # endif # endif #else # ifndef memcpy # ifdef HAS_BCOPY # define memcpy(d,s,l) bcopy(s,d,l) # else # define memcpy(d,s,l) my_bcopy(s,d,l) # endif # endif #endif /* HAS_MEMCPY */ #ifdef HAS_MEMSET # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) # ifndef memset extern char *memset proto((char*, int, int)); # endif # endif # define memzero(d,l) memset(d,0,l) #else # ifndef memzero # ifdef HAS_BZERO # define memzero(d,l) bzero(d,l) # else # define memzero(d,l) my_bzero(d,l) # endif # endif #endif /* HAS_MEMSET */ #if defined(mips) && defined(ultrix) && !defined(__STDC__) # undef HAS_MEMCMP #endif #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP) # if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY) # ifndef memcmp extern int memcmp proto((char*, char*, int)); # endif # endif # ifdef BUGGY_MSC # pragma function(memcmp) # endif #else # ifndef memcmp /* maybe we should have included the full embedding header... */ # define memcmp Perl_my_memcmp #ifndef __cplusplus extern int memcmp proto((char*, char*, int)); #endif # endif #endif /* HAS_MEMCMP */ #ifndef HAS_BCMP # ifndef bcmp # define bcmp(s1,s2,l) memcmp(s1,s2,l) # endif #endif /* !HAS_BCMP */ #ifdef HAS_MEMCMP # define memNE(s1,s2,l) (memcmp(s1,s2,l)) # define memEQ(s1,s2,l) (!memcmp(s1,s2,l)) #else # define memNE(s1,s2,l) (bcmp(s1,s2,l)) # define memEQ(s1,s2,l) (!bcmp(s1,s2,l)) #endif #ifdef I_NETINET_IN # ifdef VMS # include <in.h> # else # include <netinet/in.h> # endif #endif #endif /* Include guard */