Created
April 29, 2010 15:38
-
-
Save jmorton/383785 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| def localhost | |
| reverse_lookup "127.0.0.1" | |
| end |
This file contains hidden or 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 'socket' | |
| def reverse_lookup(address) | |
| Socket.getaddrinfo address, 0, 'AF_UNSPEC', Socket::SOCK_STREAM | |
| end |
jmorton
commented
Apr 29, 2010
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment