The implementation of the operations for version 3 of the SFTP protocol. This adds support for the readlink and symlink operations.

Methods
Public Instance methods
do_status( channel, content )

The status message changed in this version. It adds message and language fields, so the callback now receives driver, id, code, message, and language as parameters.

    # File lib/net/sftp/protocol/03/impl.rb, line 31
31:     def do_status( channel, content )
32:       return unless has_on_status?
33:       id = content.read_long
34:       code = content.read_long
35:       message = content.read_string
36:       language = content.read_string
37:       call_on_status( driver, id, code, message, language )
38:     end