Flowdock
method

parse_pasv_port

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: Net::FTP
parse_pasv_port(s) 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 1370
    def parse_pasv_port(s)
      return s.split(/,/).map(&:to_i).inject { |x, y|
        (x << 8) + y
      }
    end
Register or log in to add new notes.