123456789_123456789_123456789_123456789_123456789_

Class: OpenSSL::SSL::SSLServer

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
Inherits: Object
Defined in: ext/openssl/lib/openssl/ssl.rb

Overview

SSLServer represents a TCP/IP server socket with Secure Sockets Layer.

Class Method Summary

Instance Attribute Summary

SocketForwarder - Included

Instance Method Summary

SocketForwarder - Included

Constructor Details

.new(svr, ctx) ⇒ SSLServer

Creates a new instance of SSLServer.

  • srv is an instance of TCPServer.

  • ctx is an instance of SSLContext.

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 529

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).unpack1('H*')
    @ctx.session_id_context = session_id
  end
  @start_immediately = true
end

Instance Attribute Details

#start_immediately (rw)

When true then #accept works exactly the same as TCPServer#accept

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 524

attr_accessor :start_immediately

Instance Method Details

#accept

Works similar to TCPServer#accept.

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 557

def accept
  # Socket#accept returns [socket, addrinfo].
  # TCPServer#accept returns a socket.
  # The following comma strips addrinfo.
  sock, = @svr.accept
  begin
    ssl = OpenSSL::SSL::SSLSocket.new(sock, @ctx)
    ssl.sync_close = true
    ssl.accept if @start_immediately
    ssl
  rescue Exception => ex
    if ssl
      ssl.close
    else
      sock.close
    end
    raise ex
  end
end

#close

See IO#close for details.

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 578

def close
  @svr.close
end

#listen(backlog = Socket::SOMAXCONN)

See TCPServer#listen for details.

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 547

def listen(backlog=Socket::SOMAXCONN)
  @svr.listen(backlog)
end

#shutdown(how = Socket::SHUT_RDWR)

See BasicSocket#shutdown for details.

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 552

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

#to_io

Returns the TCPServer passed to the SSLServer when initialized.

[ GitHub ]

  
# File 'ext/openssl/lib/openssl/ssl.rb', line 542

def to_io
  @svr
end