Module: Pio::Type::UdpHeader

Included in:
Dhcp::Frame
Defined in:
lib/pio/type/udp_header.rb

Overview

UDP Header Format.

Instance Method Summary collapse

Instance Method Details

#udp_header(options) ⇒ Object


7
8
9
10
11
12
13
14
# File 'lib/pio/type/udp_header.rb', line 7

def udp_header(options)
  class_eval do
    uint16be :udp_src_port
    uint16be :udp_dst_port
    uint16be :udp_length, initial_value: options[:udp_length]
    uint16be :udp_checksum, initial_value: options[:udp_checksum]
  end
end