1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

Reorder ssl/boost includes to avoid winsock complains

This commit is contained in:
Mikhail Titov 2015-11-11 13:44:52 -06:00
parent 88db99e593
commit 94d0915004

View File

@ -1,6 +1,5 @@
#include <thread>
#include <memory>
#include <openssl/ssl.h>
#include "Daemon.h"
@ -20,6 +19,8 @@
#include "HTTPServer.h"
#include "I2PControl.h"
#include "ClientContext.h"
// ssl.h somehow pulls Windows.h stuff that has to go after asio
#include <openssl/ssl.h>
#ifdef USE_UPNP
#include "UPnP.h"