Sha256: 18401e9219381f7c5b84749cd9eb654745300a0562cd7026dce70136abfbbc21
Contents?: true
Size: 683 Bytes
Versions: 11
Compression:
Stored size: 683 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/api/communication/socket' module Contrast module Api module Communication # Implements a UNIX domain socket to connect to the Contrast Service. class UnixSocket include Contrast::Api::Communication::Socket attr_reader :path # Create the socket # @param path [String] file path to a UNIX domain socket def initialize path @path = path end def new_socket ::UNIXSocket.new(path) end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems