mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
spoofer: Fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=spoofer
|
PKG_NAME:=spoofer
|
||||||
PKG_VERSION:=1.4.1
|
PKG_VERSION:=1.4.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://www.caida.org/projects/spoofer/downloads
|
PKG_SOURCE_URL:=https://www.caida.org/projects/spoofer/downloads
|
||||||
|
|||||||
@@ -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");
|
||||||
Reference in New Issue
Block a user