1
2<!-- ************ JGroups Protocol Stack Configuration ************** -->
3<!-- generated by XmlConfigurator on Mon Apr 26 10:51:55 PDT 2004 -->
4<!-- input file: bare-bones.xml -->
5
6<!--
7Bare bones stack with only UDP and UNICAST. Multicast is unreliable
8(members may get a multicast, or not) and messages don't get fragmented (if a message is
9too big, it will be dropped). However, unicast messages (e.g. responses to multicast
10messages) are reliable: they will be retransmitted if dropped. Since no membership protocol
11is included, members have no way of finding other members. Such a functionality has to be
12done on the application level in this case
13 -->
14
15<config xmlns="urn:org:jgroups"
16        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17        xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/JGroups-2.8.xsd">
18    <UDP mcast_port="45566"
19         ip_ttl="32"/>
20    <UNICAST timeout="1200"/>
21</config>
22
23
24