repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
examples
/
net_recv.ck
blob
d98416739ebc944ff748c039d47e8c248a1ec466
1
// net_recv.ck
2
// audio over UDP
3
// see net_send.ck and net_relay.ck
4
5
// netin to dac
6
netin n => dac;
7
// set the UDP port to listen
8
8890 => n.port;
9
10
// infinite time loop
11
while(true) { 100::ms => now; }