Class: RStyx::Client::TCPConnection
- Inherits:
-
Connection
- Object
- Connection
- RStyx::Client::TCPConnection
- 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
-
#initialize(host, port, auth = nil) ⇒ TCPConnection
constructor
A new instance of TCPConnection.
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 |