File indexing completed on 2025-01-18 10:05:40
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef OPENSSL_COMPERR_H
0012 # define OPENSSL_COMPERR_H
0013 # pragma once
0014
0015 # include <openssl/opensslconf.h>
0016 # include <openssl/symhacks.h>
0017 # include <openssl/cryptoerr_legacy.h>
0018
0019
0020 # ifndef OPENSSL_NO_COMP
0021
0022
0023
0024
0025
0026 # define COMP_R_BROTLI_DECODE_ERROR 102
0027 # define COMP_R_BROTLI_ENCODE_ERROR 103
0028 # define COMP_R_BROTLI_NOT_SUPPORTED 104
0029 # define COMP_R_ZLIB_DEFLATE_ERROR 99
0030 # define COMP_R_ZLIB_INFLATE_ERROR 100
0031 # define COMP_R_ZLIB_NOT_SUPPORTED 101
0032 # define COMP_R_ZSTD_COMPRESS_ERROR 105
0033 # define COMP_R_ZSTD_DECODE_ERROR 106
0034 # define COMP_R_ZSTD_DECOMPRESS_ERROR 107
0035 # define COMP_R_ZSTD_NOT_SUPPORTED 108
0036
0037 # endif
0038 #endif