class Host

Attributes

fixed_address[R]
hardware_ethernet[R]
host[R]

Public Class Methods

new(host, hardware_ethernet, fixed_address) click to toggle source
# File lib/parse_dhcp/host.rb, line 6
def initialize(host, hardware_ethernet, fixed_address)
  @host = host
  @hardware_ethernet = hardware_ethernet
  @fixed_address = fixed_address
end