123456789101112131415161718192021222324 |
- #ifndef _INTERNAL_COMP_H
- #define _INTERNAL_COMP_H
- #include <openssl/comp.h>
- void ossl_comp_zlib_cleanup(void);
- void ossl_comp_brotli_cleanup(void);
- void ossl_comp_zstd_cleanup(void);
- struct ssl_comp_st {
- int id;
- const char *name;
- COMP_METHOD *method;
- };
- #endif
|