From c993e9d31706b2190134813f0a5096a59ad73429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 31 Mar 2010 08:58:06 +0000 Subject: output the data of stream-based objects in a serialized form svn path=/trunk/externals/iem/iemnet/; revision=13321 --- iemnet.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'iemnet.c') diff --git a/iemnet.c b/iemnet.c index 16025cf..aadc90e 100644 --- a/iemnet.c +++ b/iemnet.c @@ -29,6 +29,15 @@ void iemnet__addrout(t_outlet*status_outlet, t_outlet*address_outlet, } +void iemnet__streamout(t_outlet*outlet, int argc, t_atom*argv) { + if(NULL==outlet)return; + while(argc-->0) { + outlet_list(outlet, gensym("list"), 1, argv); + argv++; + } + +} + #ifdef _MSC_VER void tcpclient_setup(void); -- cgit v1.2.1