Sha256: 6201a3798eb26d492a026f58cdaede5025b2f1a9c178f7280d8d8e4c5726bc08
Contents?: true
Size: 666 Bytes
Versions: 1
Compression:
Stored size: 666 Bytes
Contents
require 'bindata' require 'pio/ipv4_address' module Pio module Type # IP address class IpAddress < BinData::Primitive array :octets, type: :uint8, initial_length: 4 def set(value) self.octets = IPv4Address.new(value).to_a end def get IPv4Address.new(octets.map { |each| format('%d', each) }.join('.')) end def >>(other) get.to_i >> other end def &(other) get.to_i & other end def ==(other) get == other end def to_bytes octets.map(&:to_hex).join(', ') end def inspect %("#{get}") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pio-0.30.1 | lib/pio/type/ip_address.rb |