class SocksTunnel::Remote::Connection

Attributes

server[RW]

Public Instance Methods

receive_data(data) click to toggle source
# File lib/socks_tunnel/remote.rb, line 14
def receive_data(data)
  @server.send_encoded_data(data)
end
unbind() click to toggle source
# File lib/socks_tunnel/remote.rb, line 18
def unbind
  @server.close_connection_after_writing
end