Sha256: 5a364a4d797a8c494a0f1981c8108430784df6ab3d07835f40c6b507ba716f9e

Contents?: true

Size: 532 Bytes

Versions: 3

Compression:

Stored size: 532 Bytes

Contents

module OSC
  module TCP
    CHAR_END     = 0300 # indicates end of packet
    CHAR_ESC     = 0333 # indicates byte stuffing
    CHAR_ESC_END = 0334 # ESC ESC_END means END data byte
    CHAR_ESC_ESC = 0335 # ESC ESC_ESC means ESC data byte

    CHAR_END_ENC     = [0300].pack('C') # indicates end of packet
    CHAR_ESC_ENC     = [0333].pack('C') # indicates byte stuffing
    CHAR_ESC_END_ENC = [0334].pack('C') # ESC ESC_END means END data byte
    CHAR_ESC_ESC_ENC = [0335].pack('C') # ESC ESC_ESC means ESC data byte
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
qcmd-0.2.0 lib/qcmd/core_ext/osc/tcp.rb
qcmd-0.1.16 lib/qcmd/core_ext/osc/tcp.rb
qcmd-0.1.16.pre2 lib/qcmd/core_ext/osc/tcp.rb