diff options
Diffstat (limited to '')
| -rw-r--r-- | drivers/openssl/stream_peer_openssl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/openssl/stream_peer_openssl.h b/drivers/openssl/stream_peer_openssl.h index e487cfde7..a66b641dd 100644 --- a/drivers/openssl/stream_peer_openssl.h +++ b/drivers/openssl/stream_peer_openssl.h @@ -3,12 +3,17 @@ #ifdef OPENSSL_ENABLED + +#include <stdio.h> // If you don't know what this is for stop reading now. #include "io/stream_peer_ssl.h" +#include "globals.h" +#include "os/file_access.h" +#include "curl_hostcheck.h" + #include <openssl/bio.h> // BIO objects for I/O #include <openssl/ssl.h> // SSL and SSL_CTX for SSL connections #include <openssl/err.h> // Error reporting #include <openssl/x509v3.h> -#include <stdio.h> // If you don't know what this is for stop reading now. class StreamPeerOpenSSL : public StreamPeerSSL { private: |
