| Index: runtime/bin/secure_socket.h
|
| diff --git a/runtime/bin/secure_socket.h b/runtime/bin/secure_socket.h
|
| index 754d2402e62a30b5d0cf5d91eb6fc526adb59fb1..70a24378395171a258510dfc109bd78b8fe26d5a 100644
|
| --- a/runtime/bin/secure_socket.h
|
| +++ b/runtime/bin/secure_socket.h
|
| @@ -9,14 +9,14 @@
|
| #error "secure_socket.h can only be included on builds with SSL enabled"
|
| #endif
|
|
|
| +#include <stdio.h>
|
| #include <stdlib.h>
|
| #include <string.h>
|
| -#include <stdio.h>
|
| #include <sys/types.h>
|
|
|
| #include <openssl/bio.h>
|
| -#include <openssl/ssl.h>
|
| #include <openssl/err.h>
|
| +#include <openssl/ssl.h>
|
| #include <openssl/x509.h>
|
|
|
| #include "bin/builtin.h"
|
| @@ -102,7 +102,6 @@ class SSLFilter {
|
| SSL* ssl_;
|
| BIO* socket_side_;
|
|
|
| -
|
| private:
|
| static bool library_initialized_;
|
| static Mutex* mutex_; // To protect library initialization.
|
|
|