Sha256: 8508339e2f9609c3231999684051f5503f708aac180acb840f7af31482b4426c
Contents?: true
Size: 747 Bytes
Versions: 1
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true # Copyright (C) 2009-2010 Brian Candler <http://www.deploy2.net/> # Licensed under the same terms as ruby. See LICENCE.txt and COPYING.txt class IP # Create an instance from an alternative array format: # [context, protocol, address, prefix_length] def self.from_cpal(cpal) new([cpal[1], cpal[2], cpal[3], cpal[0]]) end # Return an alternative 4-element array format with the routing context # as the first element. Useful for grouping by context. # cpal = [context, proto, address, prefix_length] def to_cpal [@ctx, self.class::PROTO, @addr, @pfxlen] end # As cpal but with a hex string for the address part def to_cphl [@ctx, self.class::PROTO, to_hex, @pfxlen] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-ip2-0.10.0 | lib/ip/cpal.rb |