module HTTPX::Plugins::Proxy::Socks4::ConnectionMethods

  1. lib/httpx/plugins/proxy/socks4.rb

Methods

Public Instance

  1. interests

Public Instance methods

interests()
[show source]
   # File lib/httpx/plugins/proxy/socks4.rb
26 def interests
27   if @state == :connecting
28     return @write_buffer.empty? ? :r : :w
29   end
30 
31   super
32 end