Class: Resolv::IPv4

Inherits:
Object
  • Object
show all
Defined in:
lib/resolv.rb

Overview

A Resolv::DNS IPv4 address.

Constant Summary collapse

Regex =

Regular expression IPv4 addresses must match.

/\A(\d+)\.(\d+)\.(\d+)\.(\d+)\z/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(address) ⇒ IPv4

:nodoc:



2010
2011
2012
2013
2014
2015
# File 'lib/resolv.rb', line 2010

def initialize(address) # :nodoc:
  unless address.kind_of?(String) && address.length == 4
    raise ArgumentError.new('IPv4 address must be 4 bytes')
  end
  @address = address
end

Instance Attribute Details

#addressObject (readonly)

The raw IPv4 address as a String.



2023
2024
2025
# File 'lib/resolv.rb', line 2023

def address
  @address
end

Class Method Details

.create(arg) ⇒ Object



1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
# File 'lib/resolv.rb', line 1992

def self.create(arg)
  case arg
  when IPv4
    return arg
  when Regex
    if (0..255) === (a = $1.to_i) &&
       (0..255) === (b = $2.to_i) &&
       (0..255) === (c = $3.to_i) &&
       (0..255) === (d = $4.to_i)
      return self.new([a, b, c, d].pack("CCCC"))
    else
      raise ArgumentError.new("IPv4 address with invalid value: " + arg)
    end
  else
    raise ArgumentError.new("cannot interpret as IPv4 address: #{arg.inspect}")
  end
end

Instance Method Details

#==(other) ⇒ Object

:nodoc:



2041
2042
2043
# File 'lib/resolv.rb', line 2041

def ==(other) # :nodoc:
  return @address == other.address
end

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


2045
2046
2047
# File 'lib/resolv.rb', line 2045

def eql?(other) # :nodoc:
  return self == other
end

#hashObject

:nodoc:



2049
2050
2051
# File 'lib/resolv.rb', line 2049

def hash # :nodoc:
  return @address.hash
end

#inspectObject

:nodoc:



2029
2030
2031
# File 'lib/resolv.rb', line 2029

def inspect # :nodoc:
  return "#<#{self.class} #{self.to_s}>"
end

#to_nameObject

Turns this IPv4 address into a Resolv::DNS::Name.



2036
2037
2038
2039
# File 'lib/resolv.rb', line 2036

def to_name
  return DNS::Name.create(
    '%d.%d.%d.%d.in-addr.arpa.' % @address.unpack('CCCC').reverse)
end

#to_sObject

:nodoc:



2025
2026
2027
# File 'lib/resolv.rb', line 2025

def to_s # :nodoc:
  return sprintf("%d.%d.%d.%d", *@address.unpack("CCCC"))
end