spoofer: Fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
483c9fceae
commit
3718caa64d
2 changed files with 14 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=spoofer
|
||||
PKG_VERSION:=1.4.1
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://www.caida.org/projects/spoofer/downloads
|
||||
|
|
13
net/spoofer/patches/010-openssl-deprecated.patch
Normal file
13
net/spoofer/patches/010-openssl-deprecated.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- a/prober/spoofer-prober.cc
|
||||
+++ b/prober/spoofer-prober.cc
|
||||
@@ -2135,8 +2135,10 @@ int main(int argc, char **argv) {
|
||||
#endif
|
||||
#ifdef HAVE_LIBSSL
|
||||
if (enableTLS) {
|
||||
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
SSL_load_error_strings();
|
||||
SSL_library_init();
|
||||
+#endif
|
||||
ssl_ctx = SSL_CTX_new(SSLv23_client_method());
|
||||
if (!ssl_ctx) {
|
||||
ssl_err("SSL_CTX_new() failed");
|
Loading…
Reference in a new issue