csound-expression-opcodes-0.0.1: opcodes for the library csound-expression

Safe HaskellNone

Csound.Typed.Opcode.Network

Synopsis

Documentation

remoteport :: D -> SE ()Source

Defines the port for use with the remote system.

Defines the port for use with the insremot, midremot, insglobal and midglobal opcodes.

  remoteport  iportnum

csound doc: http://www.csounds.com/manual/html/remoteport.html

sockrecv :: D -> D -> SigSource

Receives data from other processes using the low-level UDP or TCP protocols

Receives directly using the UDP (sockrecv and sockrecvs) or TCP (strecv) protocol onto a network. The data is not subject to any encoding or special routing. The sockrecvs opcode receives a stereo signal interleaved.

 asig  sockrecv  iport, ilength

csound doc: http://www.csounds.com/manual/html/sockrecv.html

sockrecvs :: D -> D -> (Sig, Sig)Source

Receives data from other processes using the low-level UDP or TCP protocols

Receives directly using the UDP (sockrecv and sockrecvs) or TCP (strecv) protocol onto a network. The data is not subject to any encoding or special routing. The sockrecvs opcode receives a stereo signal interleaved.

 asigl, asigr  sockrecvs  iport, ilength

csound doc: http://www.csounds.com/manual/html/sockrecv.html

strecv :: Str -> D -> SigSource

Receives data from other processes using the low-level UDP or TCP protocols

Receives directly using the UDP (sockrecv and sockrecvs) or TCP (strecv) protocol onto a network. The data is not subject to any encoding or special routing. The sockrecvs opcode receives a stereo signal interleaved.

 asig  strecv  Sipaddr, iport

csound doc: http://www.csounds.com/manual/html/sockrecv.html

socksend :: Sig -> Str -> D -> D -> SE ()Source

Sends data to other processes using the low-level UDP or TCP protocols

Transmits data directly using the UDP (socksend and socksends) or TCP (stsend) protocol onto a network. The data is not subject to any encoding or special routing. The socksends opcode send a stereo signal interleaved.

  socksend  asig, Sipaddr, iport, ilength

csound doc: http://www.csounds.com/manual/html/socksend.html

socksends :: Sig -> Sig -> Str -> D -> D -> SE ()Source

Sends data to other processes using the low-level UDP or TCP protocols

Transmits data directly using the UDP (socksend and socksends) or TCP (stsend) protocol onto a network. The data is not subject to any encoding or special routing. The socksends opcode send a stereo signal interleaved.

  socksends  asigl, asigr, Sipaddr, iport,
         ilength

csound doc: http://www.csounds.com/manual/html/socksend.html

stsend :: Sig -> Str -> D -> SE ()Source

Sends data to other processes using the low-level UDP or TCP protocols

Transmits data directly using the UDP (socksend and socksends) or TCP (stsend) protocol onto a network. The data is not subject to any encoding or special routing. The socksends opcode send a stereo signal interleaved.

  stsend  asig, Sipaddr, iport

csound doc: http://www.csounds.com/manual/html/socksend.html