class Bones::RPC::Celluloid::Connection::Socket::SSL

This is a wrapper around a tcp socket.

Public Class Methods

new(remote_host, remote_port, local_host = nil, local_port = nil) click to toggle source

Initialize the new TCPSocket with SSL.

@example Initialize the socket.

SSL.new("127.0.0.1", 27017)

@param [ String ] host The host. @param [ Integer ] port The port.

@since 1.2.0

Calls superclass method
# File lib/bones/rpc/celluloid/connection/socket/ssl.rb, line 23
def initialize(remote_host, remote_port, local_host = nil, local_port = nil)
  @host, @port = remote_host, remote_port
  handle_socket_errors do
    socket = TCPSocket.new(remote_host, remote_port, local_host, local_port)
    super(socket)
    to_io.sync_close = true
    connect
  end
end