aboutsummaryrefslogtreecommitdiffstats
path: root/src/rspamd.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2017-05-15 18:37:28 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2017-05-15 18:37:28 +0100
commite3f66510f2e1eff26be9c5fe625e7d6183102875 (patch)
tree71e18e27968e741abdcb6729f423135cc0c0ccbe /src/rspamd.h
parentc417640a97de531729be6fc96654775aca4bda33 (diff)
downloadrspamd-e3f66510f2e1eff26be9c5fe625e7d6183102875.tar.gz
rspamd-e3f66510f2e1eff26be9c5fe625e7d6183102875.zip
[Minor] Update bundled zstd to version 1.3
Diffstat (limited to 'src/rspamd.h')
-rw-r--r--src/rspamd.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/rspamd.h b/src/rspamd.h
index 3ea6c90b8..a9638ebe2 100644
--- a/src/rspamd.h
+++ b/src/rspamd.h
@@ -301,10 +301,6 @@ struct zstd_dictionary {
guint id;
};
-
-struct ZSTD_CStream_s;
-struct ZSTD_DStream_s;
-
struct rspamd_external_libs_ctx {
magic_t libmagic;
radix_compressed_t **local_addrs;
@@ -313,8 +309,8 @@ struct rspamd_external_libs_ctx {
SSL_CTX *ssl_ctx;
struct zstd_dictionary *in_dict;
struct zstd_dictionary *out_dict;
- struct ZSTD_CStream_s *out_zstream;
- struct ZSTD_DStream_s *in_zstream;
+ void *out_zstream;
+ void *in_zstream;
ref_entry_t ref;
};