xref: /openssl/include/internal/comp.h (revision da9342ed)
1 /*
2  * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9 #ifndef _INTERNAL_COMP_H
10 #define	_INTERNAL_COMP_H
11 
12 #include <openssl/comp.h>
13 
14 void ossl_comp_zlib_cleanup(void);
15 void ossl_comp_brotli_cleanup(void);
16 void ossl_comp_zstd_cleanup(void);
17 
18 struct ssl_comp_st {
19     int id;
20     const char *name;
21     COMP_METHOD *method;
22 };
23 
24 #endif
25