include openssl through OPENSSL macro

This commit is contained in:
orignal 2016-05-11 15:12:38 -04:00
parent aa5ea0e3a1
commit 3907b4101a
25 changed files with 48 additions and 169 deletions

View file

@ -3,10 +3,11 @@
#include <sstream>
#include <boost/regex.hpp>
#include <boost/asio.hpp>
#include <boost/asio/ssl.hpp>
#include <openssl/bn.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <boost/asio/ssl.hpp> // might include openssl
#include "Crypto.h"
#include OPENSSL(bn.h)
#include OPENSSL(ssl.h)
#include OPENSSL(err.h)
#include <zlib.h>
#include "I2PEndian.h"
@ -14,7 +15,6 @@
#include "FS.h"
#include "Log.h"
#include "Identity.h"
#include "Crypto.h"
#include "NetDb.h"
#include "util.h"