[Cs-dev] new server & daemon modes
Date | 2013-11-12 17:25 |
From | Victor Lazzarini |
Subject | [Cs-dev] new server & daemon modes |
Following on from some older ideas and prompted by Tarmo’s nice server program, I have added an experimental daemon mode and an UDP server. Now you can run Csound with no orchestra whatsoever by using --daemon, which can be used in frontends that have a REPL (like CsoundQT). In addition, you can start a UDP server that will listen for UDP messages containing orchestra code, with the --port=N (where N is the port to send code to), and this implies daemon mode. To set up a server you can do $./csound -odac --port=44100 and then you can send your code to Csound via UDP, like this $ cat mycode.orc | nc -u 127.0.0.1 44100 and of course you can send things over the network too. This is GIT now and has been tested a little on OSX. Victor ------------------------------------------------------------------------------ November Webinars for C, C++, Fortran Developers Accelerate application performance with scalable programming models. Explore techniques for threading, error checking, porting, and tuning. Get the most from the latest Intel processors and coprocessors. See abstracts and register http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2013-11-12 17:59 |
From | Steven Yi |
Subject | Re: [Cs-dev] new server & daemon modes |
Attachments | None None |
Hi Victor, I think Top/server.c wasn't committed. Could you check? steven On Tue, Nov 12, 2013 at 12:25 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote: Following on from some older ideas and prompted by Tarmo’s nice server program, I have added an |
Date | 2013-11-12 19:05 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] new server & daemon modes |
OOps… done it. In my haste to leave the office, I forgot to do it. Victor On 12 Nov 2013, at 17:59, Steven Yi |