瀏覽代碼

Use SSL_clear_mode where available.

Nick Mathewson 10 年之前
父節點
當前提交
22da5001b5
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      src/common/tortls.c

+ 8 - 0
src/common/tortls.c

@@ -2223,6 +2223,14 @@ tor_tls_handshake(tor_tls_t *tls)
   return r;
 }
 
+/* SSL_clear_mode was introduced in 0.9.8m */
+#ifndef SSL_clear_mode
+static void SSL_clear_mode(SSL *s, unsigned long m)
+{
+  s->mode &= ~m;
+}
+#endif
+
 /** Perform the final part of the intial TLS handshake on <b>tls</b>.  This
  * should be called for the first handshake only: it determines whether the v1
  * or the v2 handshake was used, and adjusts things for the renegotiation