Flowdock
method

parse_pasv_ipv6_host

Importance_0
v2_1_10 - Show latest stable - 0 notes - Class: Net::FTP
parse_pasv_ipv6_host(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 1009
    def parse_pasv_ipv6_host(s)
      return s.split(/,/).map { |i|
        "%02x" % i.to_i
      }.each_slice(2).map(&:join).join(":")
    end
Register or log in to add new notes.