new(uri, soc, config={})
public
Create a new DRbTCPSocket
instance.
uri is the URI we are connected to.
soc is the tcp socket we are bound to. config is our
configuration.
# File lib/drb/drb.rb, line 880
def initialize(uri, soc, config={})
@uri = uri
@socket = soc
@config = config
@acl = config[:tcp_acl]
@msg = DRbMessage.new(config)
set_sockopt(@socket)
end