Class: Jabber::Bytestreams::SOCKS5BytestreamsTarget
- Inherits:
-
SOCKS5Bytestreams
- Object
- SOCKS5Bytestreams
- Jabber::Bytestreams::SOCKS5BytestreamsTarget
- Defined in:
- lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb
Overview
SOCKS5 Bytestreams implementation of the target site
Instance Attribute Summary
Attributes inherited from SOCKS5Bytestreams
#connect_timeout, #streamhost_used
Instance Method Summary collapse
-
#accept ⇒ Object
Wait until the stream has been established.
Methods inherited from SOCKS5Bytestreams
#add_streamhost_callback, #close, #flush, #initialize, query_streamhost, #read, #write
Constructor Details
This class inherits a constructor from Jabber::Bytestreams::SOCKS5Bytestreams
Instance Method Details
#accept ⇒ Object
Wait until the stream has been established
May raise various exceptions
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb', line 14 def accept error = nil connect_sem = Semaphore.new @stream.add_iq_callback(200, self) { |iq| if iq.type == :set and iq.from == @initiator_jid and iq.to == @target_jid and iq.query.kind_of?(IqQueryBytestreams) begin @stream.delete_iq_callback(self) iq.query.each_element('streamhost') { |streamhost| if streamhost.host and streamhost.port and not @socks begin @socks = connect_socks(streamhost) @streamhost_used = streamhost rescue Exception => e Jabber::debuglog("SOCKS5 Bytestreams: #{e.class}: #{e}\n#{e.backtrace.join("\n")}") @streamhost_cbs.process(streamhost, :failure, e) end end } reply = iq.answer(false) if @streamhost_used reply.type = :result reply.add(IqQueryBytestreams.new) reply.query.add(StreamHostUsed.new(@streamhost_used.jid)) else reply.type = :error reply.add(ErrorResponse.new('item-not-found')) end @stream.send(reply) rescue Exception => e error = e end connect_sem.run true else false end } connect_sem.wait raise error if error (@socks != nil) end |