Browse Source

Reorder ssl/boost includes to avoid winsock complains

pull/294/head
Mikhail Titov 9 years ago
parent
commit
94d0915004
  1. 3
      Daemon.cpp

3
Daemon.cpp

@ -1,6 +1,5 @@ @@ -1,6 +1,5 @@
#include <thread>
#include <memory>
#include <openssl/ssl.h>
#include "Daemon.h"
@ -20,6 +19,8 @@ @@ -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"

Loading…
Cancel
Save