postmodern/ruby-nmap

View on GitHub
lib/nmap/xml/hostname.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Nmap
  class XML
    #
    # Represents a hostname.
    #
    # @since 1.0.0
    #
    class Hostname < Struct.new(:type, :name)

      #
      # Determines if the hostname was specified by the user.
      #
      # @return [Boolean]
      #
      # @since 0.8.0
      #
      def user?
        self.type == 'user'
      end

      #
      # Determines if the hostname is a DNS `PTR`.
      #
      # @return [Boolean]
      #
      # @since 0.8.0
      #
      def ptr?
        self.type == 'PTR'
      end

      #
      # Converts the hostname to a String.
      #
      # @return [String]
      #   The name of the host.
      #
      def to_s
        self.name.to_s
      end

    end
  end
end