Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
include /
zzip /
[ HOME SHELL ]
Name
Size
Permission
Action
autoconf.h
1.34
KB
-rw-r--r--
conf.h
6.09
KB
-rw-r--r--
_config.h
6.62
KB
-rw-r--r--
fetch.h
19.73
KB
-rw-r--r--
file.h
2.14
KB
-rw-r--r--
format.h
8.88
KB
-rw-r--r--
fseeko.h
3.74
KB
-rw-r--r--
info.h
774
B
-rw-r--r--
lib.h
2.86
KB
-rw-r--r--
memdisk.h
6.03
KB
-rw-r--r--
mmapped.h
4.06
KB
-rw-r--r--
_msvc.h
6.19
KB
-rw-r--r--
plugin.h
3.21
KB
-rw-r--r--
stdint.h
1.56
KB
-rw-r--r--
types.h
2.11
KB
-rw-r--r--
wrap.h
777
B
-rw-r--r--
write.h
2.31
KB
-rw-r--r--
zzip32.h
1.24
KB
-rw-r--r--
zzip.h
7.86
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : file.h
/* * this is an internal header file - the structure contains two off_t * atleast making it LARGEFILE_SENSITIVE on linux2 and solaris systems * whereas about all functions just return a ZZIP_FILE* in zzip/zzip.h * * and so, this structure should be handled version-specific and * subject to change - it had been kept binary-compatible for quite * a while now so perhaps some program sources have errnously taken * advantage of this file. * * Author: * Guido Draheim <guidod@gmx.de> * Tomi Ollila <Tomi.Ollila@tfi.net> * * Copyright (c) 1999,2000,2001,2002 Guido Draheim * All rights reserved, * use under the restrictions of the * Lesser GNU General Public License * or alternatively the restrictions * of the Mozilla Public License 1.1 */ #ifndef _ZZIP_FILE_H /* zzip-file.h */ #define _ZZIP_FILE_H 1 #ifndef ZZIP_32K #ifdef __GNUC__ /* include zzip/lib.h beforehand in order to suppress the following warning */ #warning zzip/file.h is an internal header, do not use it freely #endif #endif #include <zzip/lib.h> #include <zlib.h> #ifdef ZZIP_HAVE_UNISTD_H #include <unistd.h> #else #include <stdio.h> # ifdef ZZIP_HAVE_SYS_TYPES_H # include <sys/types.h> # endif #endif #ifdef ZZIP_HAVE_SYS_PARAM_H #include <sys/param.h> /* PATH_MAX */ #endif #ifndef PATH_MAX # ifdef MAX_PATH /* windows */ # define PATH_MAX MAX_PATH # else # define PATH_MAX 512 # endif #endif /* * ZZIP_FILE structure... currently no need to unionize, since structure needed * for inflate is superset of structure needed for unstore. * * Don't make this public. Instead, create methods for needed operations. */ struct zzip_file { struct zzip_dir* dir; int fd; int method; zzip_size_t restlen; zzip_size_t crestlen; zzip_size_t usize; zzip_size_t csize; /* added dataoffset member - data offset from start of zipfile*/ zzip_off_t dataoffset; char* buf32k; zzip_off_t offset; /* offset from the start of zipfile... */ z_stream d_stream; zzip_plugin_io_t io; }; #endif /* _ZZIP_FILE_H */
Close