Sha256: 6aab4499a34037180eeeeb3169e3478f7a91315b44a8584d35191db9a97239df
Contents?: true
Size: 707 Bytes
Versions: 7
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true require 'ffi' require_relative 'structs' require_relative 'functions' module Facter module Resolvers module Solaris module FFI SIOCGLIFNUM = -1_072_928_382 SIOCGLIFCONF = -1_072_666_203 SIOCGLIFMTU = -1_065_850_502 SIOCGLIFNETMASK = -1_065_850_499 SIOCGARP = -1_071_355_617 AF_INET = 2 AF_INET6 = 26 AF_UNSPEC = 0 SOCK_DGRAM = 1 INET_ADDRSTRLEN = 16 INET6_ADDRSTRLEN = 46 end BINDINGS_KEY = { FFI::AF_INET => :bindings, FFI::AF_INET6 => :bindings6 }.freeze end end end
Version data entries
7 entries across 7 versions & 1 rubygems