class

OpenSSL::SSL::Server

Inherits Socket::Server / Reference / Object

This class wraps another ::Socket::Server in an SSL layer.

require "socket"
require "openssl"

tcp_server = TCPServer.new(0)

ssl_context = OpenSSL::SSL::Context::Server.new
ssl_context.certificate_chain = "openssl.crt"
ssl_context.private_key = "openssl.key"
ssl_server = OpenSSL::SSL::Server.new(tcp_server, ssl_context)

puts "SSL Server listening on #{tcp_server.local_address}"
while connection = ssl_server.accept?
  connection.puts "secure message"
  connection.close
end

Constructors

new(wrapped : ::Socket::Server, context : OpenSSL::SSL::Context::Server = OpenSSL::SSL::Context::Server.new, sync_close : Bool = true)

Creates a new SSL server wrapping wrapped.

context configures the SSL options, see OpenSSL::SSL::Context::Server for details

Source

Class methods

open(wrapped : ::Socket::Server, context : OpenSSL::SSL::Context::Server = OpenSSL::SSL::Context::Server.new, sync_close : Bool = true, &)

Creates a new SSL server wrapping wrapped and yields it to the block.

context configures the SSL options, see OpenSSL::SSL::Context::Server for details

The server is closed after the block returns.

Source

Instance methods

accept

Implements ::Socket::Server#accept.

This method calls @wrapped.accept and wraps the resulting IO in a SSL socket (OpenSSL::SSL::Socket::Server) with context configuration.

Source
accept?

Implements ::Socket::Server#accept?.

This method calls @wrapped.accept? and wraps the resulting IO in a SSL socket (OpenSSL::SSL::Socket::Server) with context configuration.

Source
close

Closes this SSL server.

Propagates to wrapped if sync_close is true.

Source
closed?

Returns true if this SSL server has been closed.

Source
context

Returns the SSL context.

Source
local_address

Returns local address of wrapped.

Source
start_immediately

When true a call to #accept will also initiate the SSL handshake.

Source
start_immediately=(start_immediately : Bool)

When true a call to #accept will also initiate the SSL handshake.

Source
sync_close=(sync_close : Bool)

If #sync_close? is true, closing this server will close the wrapped server.

Source
sync_close?

If #sync_close? is true, closing this server will close the wrapped server.

Source
wrapped

Returns the wrapped server socket.

Source