remove spurious $ character from Listeners.pm
[spider.git] / perl / Listeners.pm
index cc83051a43011c0ba8aaba49774449b4f8da41f9..7dea596d50fa0a3a96036d177e32bfd269ba0cfc 100644 (file)
@@ -13,7 +13,16 @@ package main;
 use vars qw(@listen);
 
 @listen = (
-#                 ["localhost", 7300],
-#                 ["foo.dxcluster.net", 7300],
-                 );
+# remove the '#' character from the next line to enable the listener!
+  #               ["0.0.0.0", 7300],     # IPV4 only
+# ^
+# |
+#                 
+# OR (IF you listen on IPV6 as well) This one!!!!!
+  #               ["::", 7300],     # IPV4 and IPV6
+# ^
+# |
+# This one!!!!!
+);
 
+1;