]> granicus.if.org Git - php/commitdiff
Update NEWS/UPGRADING
authorDaniel Lowrey <rdlowrey@php.net>
Tue, 10 Mar 2015 05:15:04 +0000 (23:15 -0600)
committerDaniel Lowrey <rdlowrey@php.net>
Tue, 10 Mar 2015 05:15:57 +0000 (23:15 -0600)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index de18fdecc467f11573d1b39a0bab42a03e449760..be3e53a276c2ec5680c43cd2efdde1d20c88dd46 100644 (file)
--- a/NEWS
+++ b/NEWS
     + Opcache). (Laruence)
 
 - OpenSSL:
-  . Fixed bug #61285, #68329, #68046, #41631 (encrypted streams don't observe
-    socket timeouts). (Brad Broerman)
+  . Added "alpn_protocols" SSL context option allowing encrypted client/server
+    streams to negotiate alternative protocols using the ALPN TLS extension when
+    built against OpenSSL 1.0.2 or newer. Negotiated protocol information is
+    accessible through stream_get_meta_data() output.
 
 - pcntl:
   . Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler
index e844cc4dcdedb491e07ad082ad69494a462e2c2d..a024576028382f99e1a2fa940fb60d18c487ac00 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -446,7 +446,7 @@ Other
   . Added "alpn_protocols" SSL context option allowing encrypted client/server
     streams to negotiate alternative protocols using the ALPN TLS extension when
     built against OpenSSL 1.0.2 or newer. Negotiated protocol information is
-    accessible by passing streams to the new stream_socket_crypto_info().
+    accessible through stream_get_meta_data() output.
 
 ========================================
 3. Changes in SAPI modules
@@ -460,6 +460,10 @@ Other
 4. Deprecated Functionality
 ========================================
 
+- OpenSSL
+  . The "capture_session_meta" SSL context option is now deprecated. Meta
+    data concerning active crypto on a stream resource is now accessible
+    through the return result from stream_get_meta_data().
 
 ========================================
 5. Changed Functions
@@ -485,9 +489,6 @@ Other
   . Added intdiv() function for integer division.
   . Added error_clear_last() function to reset error state.
 
-- Stream:
-  . Added stream_socket_crypto_info() allowing inspection of negotiated TLS
-    connection properties
 
 ========================================
 7. New Classes and Interfaces