class WEBrick::SNIRequest
Attributes
The socket address of the server
The SNI hostname
The port this request is for
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/https.rb, line 113 def initialize(sslsocket, hostname) @host = hostname @addr = sslsocket.addr @port = @addr[1] end
Creates a new SNIRequest
.