#Author: Piotr Wojcieszonek #e-mail: piotr@wojcieszonek.pl # Copyright 23.03.2016 by Piotr Wojcieszonek require_relative 'option' require_relative 'type/ip_array' module Lib module DHCP class Option70 < Option # Post Office Protocol (POP3) Server Option The code for the POP3 server option is 70. # The minimum length for this option is 4 octets, and the length MUST always be a multiple of 4 include Type::IPArray end end end