Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/facter/resolvers/solaris/ffi/functions.rb |
# frozen_string_literal: true
module Facter
module Resolvers
module Solaris
module FFI
module Ioctl
extend ::FFI::Library
ffi_lib ::FFI::Library::LIBC, 'socket'
attach_function :ioctl_base, :ioctl, %i[int int pointer], :int
attach_function :open_socket, :socket, %i[int int int], :int
attach_function :close_socket, :close, %i[int], :int
attach_function :inet_ntop, %i[int pointer pointer uint], :string
def self.ioctl(call_const, pointer, address_family = AF_INET)
fd = Ioctl.open_socket(address_family, SOCK_DGRAM, 0)
begin
ioctl_base(fd, call_const, pointer)
ensure
Ioctl.close_socket(fd)
end
end
end
end
end
end
end