made event ok lines more consistant
[urisagit/Stem.git] / conf / test_udp.stem
CommitLineData
4536f655 1# test_udp.stem
2[
3 class => 'Stem::UDPMsg',
4 name => 'send_only',
5 args => [
6# send_host => 'localhost',
7 ],
8],
9[
10 class => 'Stem::UDPMsg',
11 name => 'recv_only',
12 args => [
13 bind_port => 9999,
14 bind_host => 'localhost',
15 data_addr => 'udp_test',
16 timeout_addr => 'udp_test',
17 server => 1,
18 timeout => 1,
19 ],
20],
21[
22 class => 'Stem::Test::UDP',
23 name => 'udp_test',
24 args => [
25 send_addr => 'send_only',
26 send_port => '9999',
27 ],
28],