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 /
Compress-Raw-Zlib /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:38
fallback
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
private
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
zlib-src
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
Makefile
30.43
KB
-rw-r--r--
2016-10-10 17:38
Makefile.PL
10.77
KB
-r--r--r--
2014-12-27 11:48
Zlib.bs
0
B
-rw-r--r--
2016-10-10 17:41
Zlib.c
102.49
KB
-rw-r--r--
2016-10-10 17:38
Zlib.o
100.38
KB
-rw-r--r--
2016-10-10 17:38
Zlib.xs
51.02
KB
-r--r--r--
2014-12-27 11:49
adler32.c
4.77
KB
-rw-r--r--
2016-10-10 17:38
adler32.o
2.59
KB
-rw-r--r--
2016-10-10 17:38
compress.c
2.39
KB
-rw-r--r--
2016-10-10 17:38
compress.o
2.1
KB
-rw-r--r--
2016-10-10 17:38
config.in
554
B
-r--r--r--
2014-12-27 11:48
constants.h
13.43
KB
-rw-r--r--
2016-10-10 17:38
constants.xs
2.5
KB
-rw-r--r--
2016-10-10 17:38
crc32.c
12.74
KB
-rw-r--r--
2016-10-10 17:38
crc32.o
4.6
KB
-rw-r--r--
2016-10-10 17:38
deflate.c
69.27
KB
-rw-r--r--
2016-10-10 17:38
deflate.o
18.32
KB
-rw-r--r--
2016-10-10 17:38
infback.c
22.13
KB
-rw-r--r--
2016-10-10 17:38
infback.o
11.05
KB
-rw-r--r--
2016-10-10 17:38
inffast.c
13.08
KB
-rw-r--r--
2016-10-10 17:38
inffast.o
3.03
KB
-rw-r--r--
2016-10-10 17:38
inflate.c
52.14
KB
-rw-r--r--
2016-10-10 17:38
inflate.o
19.11
KB
-rw-r--r--
2016-10-10 17:38
inftrees.c
12.71
KB
-rw-r--r--
2016-10-10 17:38
inftrees.o
3.35
KB
-rw-r--r--
2016-10-10 17:38
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:38
trees.c
41.98
KB
-rw-r--r--
2016-10-10 17:38
trees.o
14.21
KB
-rw-r--r--
2016-10-10 17:38
typemap
1.34
KB
-r--r--r--
2014-12-27 11:48
uncompr.c
1.92
KB
-rw-r--r--
2016-10-10 17:38
uncompr.o
1.9
KB
-rw-r--r--
2016-10-10 17:38
zutil.c
7.23
KB
-rw-r--r--
2016-10-10 17:38
zutil.o
2.74
KB
-rw-r--r--
2016-10-10 17:38
Save
Rename
/* compress.c -- compress a memory buffer * Copyright (C) 1995-2005 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ /* @(#) $Id$ */ #define ZLIB_INTERNAL #include "zlib.h" /* =========================================================================== Compresses the source buffer into the destination buffer. The level parameter has the same meaning as in deflateInit. sourceLen is the byte length of the source buffer. Upon entry, destLen is the total size of the destination buffer, which must be at least 0.1% larger than sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the compressed buffer. compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, Z_STREAM_ERROR if the level parameter is invalid. */ int ZEXPORT compress2 ( Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int level) { z_stream stream; int err; stream.next_in = (z_const Bytef *)source; stream.avail_in = (uInt)sourceLen; #ifdef MAXSEG_64K /* Check for source > 64K on 16-bit machine: */ if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; #endif stream.next_out = dest; stream.avail_out = (uInt)*destLen; if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; stream.zalloc = (alloc_func)0; stream.zfree = (free_func)0; stream.opaque = (voidpf)0; err = deflateInit(&stream, level); if (err != Z_OK) return err; err = deflate(&stream, Z_FINISH); if (err != Z_STREAM_END) { deflateEnd(&stream); return err == Z_OK ? Z_BUF_ERROR : err; } *destLen = stream.total_out; err = deflateEnd(&stream); return err; } /* =========================================================================== */ int ZEXPORT compress ( Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) { return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); } /* =========================================================================== If the default memLevel or windowBits for deflateInit() is changed, then this function needs to be updated. */ uLong ZEXPORT compressBound ( uLong sourceLen) { return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + (sourceLen >> 25) + 13; }