Sha256: 19226cf6a8849e726bbf8f31b38219f2725392b6e80829d7b7cc1278129daeae

Contents?: true

Size: 982 Bytes

Versions: 2

Compression:

Stored size: 982 Bytes

Contents

# Copyright (c) 2021 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
      # This class allows us to create a TCP Socket to communicate to the Service (Speed Racer). Either it or the Unix
      # Socket will be used, as determined by the configuration options set for Service communication.
      class TcpSocket
        include Contrast::Api::Communication::Socket

        attr_reader :host, :port

        # Create the socket
        #
        # @param host [String] socket target hostname or IP address
        # @param port [String,Integer] socket target port
        def initialize host, port
          @host = host.to_s
          @port = port.to_i
        end

        # @return [::TCPSocket]
        def new_socket
          ::TCPSocket.new(host, port)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
contrast-agent-4.14.1 lib/contrast/api/communication/tcp_socket.rb
contrast-agent-4.14.0 lib/contrast/api/communication/tcp_socket.rb