# File lib/net/sftp/protocol/driver.rb, line 196
    def method_missing( sym, *args, &block )
      if @state == :open && @dispatcher.respond_to?( sym )
        assert_state :open
        @dispatcher.__send__( sym, *args, &block )
      else
        super
      end
    end