File: socks4a.rb

package info (click to toggle)
ruby-proxifier 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: ruby: 341; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 192 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
require "proxifier/proxies/socks"

module Proxifier
  class SOCKS4AProxy < SOCKSProxy
    def do_proxify(*)
      raise NotImplementedError, "SOCKS4A is not yet implemented"
    end
  end
end