| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1/cwd/usr/include/dovecot/ |
Upload File : |
#ifndef COMPRESSION_H
#define COMPRESSION_H
enum istream_decompress_flags {
/* If stream isn't detected to be compressed, return it as passthrough
istream. */
ISTREAM_DECOMPRESS_FLAG_TRY = BIT(0),
};
struct compression_handler {
const char *name;
const char *ext;
bool (*is_compressed)(struct istream *input);
struct istream *(*create_istream)(struct istream *input);
struct ostream *(*create_ostream_auto)(struct ostream *output, struct event *event);
};
extern const struct compression_handler compression_handlers[];
/* Returns 1 if compression handler was found and is usable, 0 if support isn't
compiled in, -1 if unknown. */
int compression_lookup_handler(const char *name,
const struct compression_handler **handler_r);
/* Detect handler by looking at the first few bytes of the input stream. */
int ATTR_NOWARN_UNUSED_RESULT
compression_detect_handler(struct istream *input,
const struct compression_handler **handler_r);
/* Lookup handler based on filename extension in the path, returns the same
* values as compression_lookup_handler. */
int compression_lookup_handler_from_ext(const char *path,
const struct compression_handler **handler_r);
/* Automatically detect the compression format. Note that using tee-istream as
one of the parent streams is dangerous here: A decompression istream may
have to read a lot of data (e.g. 8 kB isn't enough) before it returns even
the first byte as output. If the other tee children aren't read forward,
this can cause an infinite loop when i_stream_read() is always returning 0.
This is why ISTREAM_DECOMPRESS_FLAG_TRY should be used instead of attempting
to implement similar functionality with tee-istream. */
struct istream *
i_stream_create_decompress(struct istream *input,
enum istream_decompress_flags flags);
#endif