当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby SSLSocket.open用法及代码示例


本文简要介绍ruby语言中 OpenSSL::SSL::SSLSocket.open 的用法。

用法

open(remote_host, remote_port, local_host=nil, local_port=nil, context: nil)

创建 SSLSocket 的新实例。 remote host_ 和 remote port_ 用于打开 TCPSocket 。如果指定了local host_ 和local port_,则在本地使用这些参数来建立连接。如果提供了context,则 SSL Sockets 初始参数将从上下文中获取。

例子

sock = OpenSSL::SSL::SSLSocket.open('localhost', 443)
sock.connect # Initiates a connection to localhost:443

使用 SSLContext:

ctx = OpenSSL::SSL::SSLContext.new
sock = OpenSSL::SSL::SSLSocket.open('localhost', 443, context: ctx)
sock.connect # Initiates a connection to localhost:443 with SSLContext

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 SSLSocket.open。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。