Class: Net::SSH::Connection::Session::NilChannel

Inherits:
Object
  • Object
show all
Defined in:
lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/connection/session.rb

Instance Method Summary collapse

Constructor Details

#initialize(session) ⇒ NilChannel

Returns a new instance of NilChannel.



51
52
53
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/connection/session.rb', line 51

def initialize(session)
  @session = session
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(sym, *args) ⇒ Object



55
56
57
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/connection/session.rb', line 55

def method_missing(sym, *args)
  @session.lwarn { "ignoring request #{sym.inspect} for non-existent (closed?) channel; probably ssh server bug" }
end