Class: Jabber::Bytestreams::SOCKS5BytestreamsTarget

Inherits:
SOCKS5Bytestreams show all
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

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

#acceptObject

Wait until the stream has been established

May raise various exceptions



10
11
12
13
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
# File 'lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb', line 10

def accept
  error = nil
  connect_lock = Mutex.new
  connect_lock.lock

  @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(Error.new('item-not-found'))
        end
        @stream.send(reply)
      rescue Exception => e
        error = e
      end
        
      connect_lock.unlock
      true
    else
      false
    end
  }

  connect_lock.lock
  connect_lock.unlock
  raise error if error
  (@socks != nil)
end