Project

General

Profile

Actions

Bug #6345

closed

resolv-replace.rb

Added by worthspending (Jeff Allen) almost 12 years ago. Updated almost 12 years ago.

Status:
Rejected
Assignee:
-
Target version:
ruby -v:
ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-linux]
Backport:
[ruby-core:44562]

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) almost 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

Actions

Also available in: Atom PDF

Like0
Like0