Class: OpenSSL::SSL::SSLServer

Inherits:
Object
  • Object
show all
Includes:
SocketForwarder
Defined in:
lib/openssl/ssl.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SocketForwarder

#addr, #closed?, #do_not_reverse_lookup=, #fcntl, #getsockopt, #peeraddr, #setsockopt

Constructor Details

#initialize(svr, ctx) ⇒ SSLServer

Returns a new instance of SSLServer.



147
148
149
150
151
152
153
154
155
156
157
# File 'lib/openssl/ssl.rb', line 147

def initialize(svr, ctx)
  @svr = svr
  @ctx = ctx
  unless ctx.session_id_context
    # see #6137 - session id may not exceed 32 bytes
    prng = ::Random.new($0.hash)
    session_id = prng.bytes(16).unpack('H*')[0]
    @ctx.session_id_context = session_id
  end
  @start_immediately = true
end

Instance Attribute Details

#start_immediatelyObject

Returns the value of attribute start_immediately



145
146
147
# File 'lib/openssl/ssl.rb', line 145

def start_immediately
  @start_immediately
end

Instance Method Details

#acceptObject



171
172
173
174
175
176
177
178
179
180
181
182
# File 'lib/openssl/ssl.rb', line 171

def accept
  sock = @svr.accept
  begin
    ssl = OpenSSL::SSL::SSLSocket.new(sock, @ctx)
    ssl.sync_close = true
    ssl.accept if @start_immediately
    ssl
  rescue SSLError => ex
    sock.close
    raise ex
  end
end

#closeObject



184
185
186
# File 'lib/openssl/ssl.rb', line 184

def close
  @svr.close
end

#listen(backlog = 5) ⇒ Object



163
164
165
# File 'lib/openssl/ssl.rb', line 163

def listen(backlog=5)
  @svr.listen(backlog)
end

#shutdown(how = Socket::SHUT_RDWR) ⇒ Object



167
168
169
# File 'lib/openssl/ssl.rb', line 167

def shutdown(how=Socket::SHUT_RDWR)
  @svr.shutdown(how)
end

#to_ioObject



159
160
161
# File 'lib/openssl/ssl.rb', line 159

def to_io
  @svr
end