summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNARUSE, Yui <naruse@airemix.jp>2019-12-09 20:19:11 +0900
committerNARUSE, Yui <naruse@airemix.jp>2019-12-09 20:21:49 +0900
commit54072e329cab7207fba133caba4fc12b45add8f9 (patch)
tree89cc3dca25a16017330c81cf5dc13243894c2313 /NEWS
parent194327942690a7997c7b48d34cc105c6ec8b8d40 (diff)
Add ipaddr optional parameter to Net::HTTP#start
to replace the address for TCP/IP connection [Feature #5180] There're 3 layers of hostname: * host address for TCP/IP * TLS server name * HTTP Host header value To test DNS round robin or check server certificate from server local, people sometimes want to connect server with given IP address but keep TLS server name and HTTP Host header value. closes [Feature #15215] closes https://github.com/ruby/ruby/pull/1893 closes https://github.com/ruby/ruby/pull/1977
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 782060a7f3..46ab24277b 100644
--- a/NEWS
+++ b/NEWS
@@ -508,6 +508,11 @@ Net::FTP::
* Add Net::FTP#features to check available features, and Net::FTP#option to
enable/disable each of them. [Feature #15964]
+Net::HTTP::
+
+ * Add ipaddr optional parameter to Net::HTTP#start to replace the address for
+ TCP/IP connection [Feature #5180]
+
Net::IMAP::
* Add Server Name Indication (SNI) support. [Feature #15594]