Bug #6345
closedresolv-replace.rb
Description
I am working on a program that requires socket connections via a socks proxy. Ruby appears to have some code to do the job, however, it appears unfinished or not fully implemented. I cannot find any documentation, notes, or examples using SOCKSSocket.
The following is taken directly from lib/resolv-replace.rb
class SOCKSSocket < TCPSocket
:stopdoc:¶
alias original_resolv_initialize initialize
:startdoc:¶
def initialize(host, serv)
original_resolv_initialize(IPSocket.getaddress(host), port)
end
end if defined? SOCKSSocket
It would be incredibly helpful if I can find out that I am right in my assumptions and the code is not yet ready or someone to point me to a reliable example of the proper use of SOCKSSocket.
Thank you
Updated by mame (Yusuke Endoh) over 12 years ago
- Status changed from Open to Rejected
I am working on a program that requires socket connections via a socks proxy. Ruby appears to have some code to do the job, however, it appears unfinished or not fully implemented. I cannot find any documentation, notes, or examples using SOCKSSocket.
Ask Google.
http://www.ruby-doc.org/stdlib-1.9.3/libdoc/socket/rdoc/SOCKSSocket.html
It would be incredibly helpful if I can find out that I am right in my assumptions and the code is not yet ready or someone to point me to a reliable example of the proper use of SOCKSSocket.
You may want to get help from ruby-talk.
Please do not register a ticket just for asking a question.
Thanks,
--
Yusuke Endoh mame@tsg.ne.jp