17 lines
346 B
Plaintext
17 lines
346 B
Plaintext
$NetBSD: patch-ad,v 1.2 2011/11/24 01:15:41 marino Exp $
|
|
|
|
--- tcp.h.orig 2007-01-12 07:12:10.000000000 +0000
|
|
+++ tcp.h
|
|
@@ -100,7 +100,11 @@ private:
|
|
|
|
#ifdef USE_SSL
|
|
#ifdef USE_OPENSSL
|
|
+#if OPENSSL_VERSION_NUMBER < 0x00909000L
|
|
SSL_METHOD *m_sslMeth;
|
|
+#else
|
|
+ const SSL_METHOD *m_sslMeth;
|
|
+#endif
|
|
SSL_CTX* m_sslCtx;
|
|
SSL *m_ssl;
|
|
#else
|