class Dizby::SecureProtocol::ResponseTunnel

Public Class Methods

new(server, tunnel) click to toggle source
# File lib/dizby/protocols/secure.rb, line 87
def initialize(server, tunnel)
  super(server, tunnel)

  @remote_port = tunnel.remote_port
end

Public Instance Methods

uri() click to toggle source
# File lib/dizby/protocols/secure.rb, line 93
def uri # overload the uri of the server
  # we use the drb protocol for the rebound connection
  "drb://localhost:#{@remote_port}"
end