module Plug::Proxy

Attributes

target[RW]

Public Class Methods

new(transport, target) click to toggle source
# File lib/rbkb/plug/proxy.rb, line 10
def initialize(transport, target)
  @transport = transport
  @peers = ProxyPeerList.new(self)
  @kind = :proxy
end