csound-expression-opcodes-0.0.5.1: opcodes for the library csound-expression
Safe HaskellNone
LanguageHaskell2010

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://csound.com/docs/manual/remoteport.html

sockrecv :: D -> D -> 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.

asig  sockrecv  iport, ilength
ksig  sockrecv  iport, ilength

csound doc: http://csound.com/docs/manual/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://csound.com/docs/manual/sockrecv.html

strecv :: Str -> D -> 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.

asig  strecv  Sipaddr, iport

csound doc: http://csound.com/docs/manual/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
 socksend  ksig, Sipaddr, iport, ilength

csound doc: http://csound.com/docs/manual/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://csound.com/docs/manual/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://csound.com/docs/manual/socksend.html