Connection
# File lib/thin/backends/swiftiply_client.rb, line 33 def connection_completed send_data swiftiply_handshake(@backend.key) end
# File lib/thin/backends/swiftiply_client.rb, line 37 def persistent? true end
# File lib/thin/backends/swiftiply_client.rb, line 41 def unbind super EventMachine.add_timer(rand(2)) { reconnect(@backend.host, @backend.port) } if @backend.running? end
For some reason Swiftiply request the current host
# File lib/thin/backends/swiftiply_client.rb, line 52 def host_ip Socket.gethostbyname(@backend.host)[3].unpack('CCCC') rescue [0,0,0,0] end
# File lib/thin/backends/swiftiply_client.rb, line 47 def swiftiply_handshake(key) 'swiftclient' << host_ip.collect { |x| sprintf('%02x', x.to_i)}.join << sprintf('%04x', @backend.port) << sprintf('%02x', key.length) << key end
[Validate]
Generated with the Darkfish Rdoc Generator 2.