12345678910111213141516171819202122232425 |
- #ifndef RTC_BASE_OPENSSL_H_
- #define RTC_BASE_OPENSSL_H_
- #if defined(WEBRTC_WIN)
- #include "rtc_base/win32.h" // NOLINT
- #endif
- #include <openssl/ssl.h>
- #if (OPENSSL_VERSION_NUMBER < 0x10100000L)
- #error OpenSSL is older than 1.1.0, which is the minimum supported version.
- #endif
- #endif
|