Closed GoogleCodeExporter closed 9 years ago
Sorry for bad English. :(
Original comment by login...@null.net
on 30 Oct 2009 at 9:03
Sorry, actually it must be so (tested at home)
[CODE]
"Connect to the host and port specified in __init__."
if self.proxy_info and self.proxy_info.isgood():
self.sock = socks.socksocket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.setproxy(*self.proxy_info.astuple())
else:
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if has_timeout(self.timeout):
self.sock.settimeout(self.timeout)
self.sock.connect((self.host, self.port))
[/CODE]
Works fine for me
Original comment by login...@null.net
on 7 Nov 2009 at 6:23
Original comment by joe.gregorio@gmail.com
on 13 Jun 2011 at 4:58
Original issue reported on code.google.com by
login...@null.net
on 30 Oct 2009 at 9:02