method

send_type_command

Importance_0
send_type_command() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/ftp.rb, line 153
    def send_type_command
      if @binary
        voidcmd("TYPE I")
      else
        voidcmd("TYPE A")
      end
    end
Register or log in to add new notes.