Created
February 1, 2012 16:53
-
-
Save richardkmichael/1718010 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'resolv' | |
class Resolv | |
def self.match?( node ) | |
case node | |
when /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/ | |
name = getname(node) | |
node == getaddress(name) | |
else | |
ip = getaddress(node) | |
node == getname(ip) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment