Class: RStyx::Client::TCPConnection

Inherits:
Connection show all
Defined in:
lib/rstyx/client.rb

Overview

TCP connection subclass.

Instance Attribute Summary

Attributes inherited from Connection

#connectstate, #msize, #peerauth, #pendingclunks, #rootdirectory, #rootfid, #umask, #usedfids, #version

Instance Method Summary collapse

Methods inherited from Connection

#connect, #disconnect, #get_free_fid, #open, #return_fid, #send_message, #tclunk

Constructor Details

#initialize(host, port, auth = nil) ⇒ TCPConnection

Returns a new instance of TCPConnection.



447
448
449
450
451
# File 'lib/rstyx/client.rb', line 447

def initialize(host, port, auth=nil)
  @host = host
  @port = port
  super(auth)
end