Sha256: d2e02939b3edd6ad8dd8d223c79dae7b5d5fc4593f904493f5f70bc0075ad813
Contents?: true
Size: 734 Bytes
Versions: 52
Compression:
Stored size: 734 Bytes
Contents
# encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt require 'cosmos' require 'cosmos/interfaces/tcpip_client_interface' class PacketInterface < Cosmos::TcpipClientInterface def initialize(hostname, port, write_timeout = 10.0, read_timeout = nil) super(hostname, port, port, write_timeout, read_timeout, 'LENGTH', 0, 32, 4, 1, 'BIG_ENDIAN', 4) end def pre_write_packet(packet) [packet.length].pack('N') << packet.buffer end end
Version data entries
52 entries across 52 versions & 1 rubygems