Sha256: e3f2cec53ce1ada3c4ba35bda7d6a3e9cce134f06c44f27b9278125e0b78fe4f
Contents?: true
Size: 1.25 KB
Versions: 8
Compression:
Stored size: 1.25 KB
Contents
# # = Ruby Whois # # An intelligent pure Ruby WHOIS client and parser. # # # Category:: Net # Package:: Whois # Author:: Simone Carletti <weppos@weppos.net> # License:: MIT License # #-- # #++ module Whois class Server module Adapters class Arpa < Base def request(qstring) Server.guess(inaddr_to_ip(qstring)).query(qstring) end protected # "127.1.168.192.in-addr.arpa" => "192.168.1.127" # "1.168.192.in-addr.arpa" => "192.168.1.0" # "168.192.in-addr.arpa" => "192.168.0.0" # "192.in-addr.arpa" => "192.0.0.0" # "in-addr.arpa" => "0.0.0.0" def inaddr_to_ip(string) unless /^([0-9]{1,3}\.?){0,4}in-addr\.arpa$/ =~ string raise ServerError, "Invalid .in-addr.arpa address" end a, b, c, d = string.scan(/[0-9]{1,3}\./).reverse [a, b, c, d].map do |token| token = (token ||= 0).to_i if token <= 255 && token >= 0 token else raise ServerError, "Invalid .in-addr.arpa token `#{token}'" end end.join(".") end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems