1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/ext/openssl/tests
Arnaud Le Blanc c29b5be312 Added client-side Server Name Indication (SNI) support in OpenSSL extension.
#
# [DOC]
#
# New SSL context options :
#
# - SNI_enabled : Set to FALSE to disable SNI support (enabled by default)
# - SNI_server_name : If not set, the server name will be guessed from the
# stream URL (e.g. https://example.com/ will use example.com as hostname.),
# else the given name will be used.
#
# SNI is to SSL/TLS what the Host header is for HTTP : it allows multiple
# certificates on the same IP address.
#
# As for HTTP virtual hosts, this should be totaly transparent in most cases.
#
# Context options allows more control, e.g. :
# 
# $context = stream_context_create(array(
#   'ssl' => array('SNI_server_name' => 'foo.example.com'),
#   'http' => array('header' => 'Host: foo.example.com'),
# ));
# file_get_contents('https://127.0.0.1/', false, $context);
#
# OpenSSL >= 0.9.8j supports SNI (by default since OpenSSL 0.9.8k).
2009-10-21 16:10:19 +00:00
..
2008-07-15 09:14:54 +00:00
2008-07-19 00:02:46 +00:00
2007-04-04 21:39:01 +00:00
2008-05-27 13:54:30 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:02:46 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:02:46 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:02:46 +00:00
2008-05-27 13:54:30 +00:00
2007-05-28 20:03:35 +00:00
2008-07-19 00:02:46 +00:00
2008-07-19 00:02:46 +00:00
2008-07-19 00:02:46 +00:00
2007-05-30 15:40:17 +00:00
2007-05-28 20:03:35 +00:00
2008-11-18 02:13:53 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-19 00:00:26 +00:00
2008-07-15 03:21:56 +00:00