View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

DebugNetAddr

Home   How To   Code Pool   Public Library   Theory   Events
simply dumps the messages sent to an address to a document.
acts as a normal NetAddr, just dumps the messages.
[jrh]


DebugNetAddr.sc (updated version with improved display)


//example:
n = DebugNetAddr("127.0.0.1", 57120);
n.sendMsg("/n_set", 1900, \freq, 568);


n.active = false;
n.active = true;

// as server address
n = DebugNetAddr("127.0.0.1", 57110);
Server.default = s = Server(\localhost, n);

s.boot;

x = Synth(\default);
x.set(\freq, 200);
x.release;



Link to this Page