Monday, October 27, 2003, 7:25:44 PM, Eric wrote:

> a simple code example wouldn't be unwelcome.

an ultra simple echo server + client:

-- server --
REBOL [ title: 'server ]
srv: open udp://:9001
forever [
    cli: wait srv
    print copy cli
]

-- client --
REBOL [ title: 'client ]
foo: open udp://127.255.255.255:9001
insert foo "bar"
close foo

-- 
Best regards,
 Andreas


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.

Reply via email to