Sha256: 8f129982b630e2c2f2172d0b1a1ad517e594754a30bbe800046ebc26dae6c481
Contents?: true
Size: 896 Bytes
Versions: 64
Compression:
Stored size: 896 Bytes
Contents
# encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt require 'socket' require 'resolv' # COSMOS specific additions to the Ruby Socket class class Socket # @return [String] The IP address of the current machine def self.get_own_ip_address Resolv.getaddress Socket.gethostname end # @param ip_address [String] IP address in the form xxx.xxx.xxx.xxx # @return [String] The hostname of the given IP address or 'UNKNOWN' if the # lookup fails def self.lookup_hostname_from_ip(ip_address) begin return Resolv.getname(ip_address) rescue return 'UNKNOWN' end end end
Version data entries
64 entries across 64 versions & 1 rubygems