Class: Quaff::TCPSourceFromSocket

Inherits:
TCPSource show all
Defined in:
lib/sources.rb

Instance Attribute Summary

Attributes inherited from TCPSource

#sock

Instance Method Summary collapse

Methods inherited from TCPSource

#close, #send_msg

Methods inherited from Source

#close, #remote_ip, #remote_port, #sock

Constructor Details

#initialize(sock) ⇒ TCPSourceFromSocket

Returns a new instance of TCPSourceFromSocket.



56
57
58
59
# File 'lib/sources.rb', line 56

def initialize sock
  @sock = sock
  @port, @ip = Socket.unpack_sockaddr_in(@sock.getpeername)
end