class Proxy::Probing::Probes::Abstract

Public Class Methods

humanized_scan_type() click to toggle source
# File lib/smart-proxy-probing/probes/abstract.rb, line 9
def humanized_scan_type
  raise NotImplementedError
end
new(hosts, ports = [], options = {}) click to toggle source
# File lib/smart-proxy-probing/probes/abstract.rb, line 14
def initialize(hosts, ports = [], options = {})
  @hosts   = Array(hosts)
  @ports   = Array(ports)
  @options = options
end
scan_type() click to toggle source
# File lib/smart-proxy-probing/probes/abstract.rb, line 5
def scan_type
  raise NotImplementedError
end

Public Instance Methods

command() click to toggle source
# File lib/smart-proxy-probing/probes/abstract.rb, line 20
def command
  raise NotImplementedError
end
parse_result(string) click to toggle source
# File lib/smart-proxy-probing/probes/abstract.rb, line 24
def parse_result(string)
  raise NotImplementedError
end