diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-08-14 14:01:09 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-08-14 14:01:09 +0100 |
commit | 81d9b6e8f4eeaa5498e6c4ab7e80eb2789b46aad (patch) | |
tree | 759b86113a8e9e0562f2a880d72dc8f753353010 /src/rspamd.h | |
parent | 8f4a6729d18ba775fdb7861ef0239f312d705f4a (diff) | |
download | rspamd-81d9b6e8f4eeaa5498e6c4ab7e80eb2789b46aad.tar.gz rspamd-81d9b6e8f4eeaa5498e6c4ab7e80eb2789b46aad.zip |
[Rework] Finish utils rework
Diffstat (limited to 'src/rspamd.h')
-rw-r--r-- | src/rspamd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rspamd.h b/src/rspamd.h index b3aef558b..8c92e1818 100644 --- a/src/rspamd.h +++ b/src/rspamd.h @@ -1,11 +1,11 @@ -/*- - * Copyright 2016-2017 Vsevolod Stakhov +/* + * Copyright 2023 Vsevolod Stakhov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -352,8 +352,8 @@ struct rspamd_external_libs_ctx { void **local_addrs; struct rspamd_cryptobox_library_ctx *crypto_ctx; struct ottery_config *ottery_cfg; - SSL_CTX *ssl_ctx; - SSL_CTX *ssl_ctx_noverify; + void *ssl_ctx; + void *ssl_ctx_noverify; struct zstd_dictionary *in_dict; struct zstd_dictionary *out_dict; void *out_zstream; |