blackh Tue Mar 4 18:54:49 2003 EDT
Added files:
/grapevine grapevine-config.xml
Log:
Forgot this one, too!
Index: grapevine/grapevine-config.xml
+++ grapevine/grapevine-config.xml
<?xml version="1.0"?>
<!-- Grapevine network configuration file. -->
<!DOCTYPE grapevine [
<!ELEMENT grapevine (domain)*>
<!ELEMENT domain (facts)*>
<!ATTLIST domain
name CDATA #REQUIRED>
<!ELEMENT facts ANY>
<!ELEMENT seed EMPTY>
<!ATTLIST seed
address CDATA #IMPLIED>
<!ELEMENT client EMPTY>
<!ATTLIST client
port CDATA #IMPLIED>
<!ELEMENT allow EMPTY>
<!ATTLIST allow
address CDATA #IMPLIED>
<!ELEMENT network EMPTY>
<!ATTLIST network
port CDATA #IMPLIED>
]>
<grapevine>
<domain name="config">
<facts>
<!--
Specify the nodes to try to connect to if no other nodes are known. -->
<seed address="203.79.92.135:7911"/>
<!--
Specify the port on which Grapevine should listen for client traffic. -->
<client port="7588"/>
<!--
Specify the list of IP addresses of hosts which are allowed to access the
Grapevine network using clients or web browser on http://localhost:7588/ -->
<!-- <allow address="192.168.137.4"/> -->
<!-- <allow address="192.168.137.5"/> -->
<!-- <allow address="192.168.138.5"/> -->
<!--
Specify the port on which Grapevine should listen to the Grapevine network.
If not specified, Grapevine chooses a random port. This setting should
only be necessary if you are running a well-known seed node, or if you
have special firewalling requirements. -->
<!-- <network port="8002"/> -->
</facts>
</domain>
</grapevine>
|