1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<!-- ************ JGroups Protocol Stack Configuration ************** -->
<!-- generated by XmlConfigurator on Mon Apr 26 11:26:12 PDT 2004 -->
<!-- input file: smack.old.xml -->
<!--Stack based on SMACK and minimal threads. SMACK is a
simple reliable multicast transport based on positive
acks (sender sends message, receiver sends ack, if
sender doesn't receive ack within timeout, message
will be retransmitted). Compared to smack.xml, this stack uses TUNNEL as transport-->
<config xmlns="urn:org:jgroups"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/JGroups-2.12.xsd">
<UDP mcast_port="45566" ip_ttl="32"/>
<FD_SIMPLE timeout="3000" interval="2000" max_missed_hbs="3"/>
<UNICAST timeout="1200,2400,3000" />
<SMACK max_xmits="20" timeout="1000,1500,2000" />
</config>
|