summaryrefslogtreecommitdiffstats
path: root/modules/openssl/stream_peer_openssl.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-04-28 19:28:21 +0200
committerRémi Verschelde <rverschelde@gmail.com>2017-04-28 21:19:25 +0200
commitd4029aa51a0f0bce5dc73885af74b592e3aa33b7 (patch)
tree22848a9191aca36a38b6f0bda4c313c3349f2eab /modules/openssl/stream_peer_openssl.h
parentc5f830d6b90574ef1e34fd2c35a0ebfa1ad92fe6 (diff)
downloadredot-engine-d4029aa51a0f0bce5dc73885af74b592e3aa33b7.tar.gz
Move other lone thirdparty files to thirdparty/misc
Also move Box2D ConvexDecomposition contrib code to thirdparty/b2d_convexdecomp.
Diffstat (limited to 'modules/openssl/stream_peer_openssl.h')
-rw-r--r--modules/openssl/stream_peer_openssl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/openssl/stream_peer_openssl.h b/modules/openssl/stream_peer_openssl.h
index 12262da94a..5c830ebf37 100644
--- a/modules/openssl/stream_peer_openssl.h
+++ b/modules/openssl/stream_peer_openssl.h
@@ -30,17 +30,19 @@
#ifndef STREAM_PEER_OPEN_SSL_H
#define STREAM_PEER_OPEN_SSL_H
-#include "curl_hostcheck.h"
#include "global_config.h"
#include "io/stream_peer_ssl.h"
#include "os/file_access.h"
-#include <stdio.h> // If you don't know what this is for stop reading now.
+
+#include "thirdparty/misc/curl_hostcheck.h"
#include <openssl/bio.h> // BIO objects for I/O
#include <openssl/err.h> // Error reporting
#include <openssl/ssl.h> // SSL and SSL_CTX for SSL connections
#include <openssl/x509v3.h>
+#include <stdio.h>
+
class StreamPeerOpenSSL : public StreamPeerSSL {
private:
static int _bio_create(BIO *b);