Remove OpenSSL warnings ignore
If we include OpenSSL in extern "C" blocks consistently, c++ warnings no
longer appear. This means we can remove the special case from meson.
Tested: Code compiles when built locally on an ubuntu 22.04 system.
Change-Id: I5add4113b32cd88b7fdd874174c845425a7c287a
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/http/mutual_tls.hpp b/http/mutual_tls.hpp
index 1620054..9f9f82b 100644
--- a/http/mutual_tls.hpp
+++ b/http/mutual_tls.hpp
@@ -4,8 +4,11 @@
#include "mutual_tls_meta.hpp"
#include "persistent_data.hpp"
+extern "C"
+{
#include <openssl/crypto.h>
#include <openssl/ssl.h>
+}
#include <boost/asio/ip/address.hpp>
#include <boost/asio/ssl/verify_context.hpp>