Vanilla Development Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/docs



Date:	Monday February 28, 19100 @ 20:51
Author:	karthik

Update of /home/netrek/cvsroot/Vanilla/docs
In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv3695/docs

Modified Files:
	sample_ports 
Log Message:
Added IP binding support to newstartd.


****************************************

Index: Vanilla/docs/sample_ports
diff -u Vanilla/docs/sample_ports:1.6 Vanilla/docs/sample_ports:1.7
--- Vanilla/docs/sample_ports:1.6	Thu Jan  6 14:45:26 2000
+++ Vanilla/docs/sample_ports	Mon Feb 28 20:51:05 2000
@@ -1,9 +1,14 @@
-#	$Id: sample_ports,v 1.6 2000/01/06 20:45:26 unbelver Exp $	
+#	$Id: sample_ports,v 1.7 2000/02/29 02:51:05 karthik Exp $	
 # 
 # This is .ports, and it is parsed by newstartd on startup to determine which
 # TCP/IP port numbers to listen on for connections, and what to do about
 # connections that arrive.  Sending a SIGHUP to newstartd will force a reload.
 #
+# Specifying the port alone will cause newstartd to listen on all interfaces.
+# Specifying IP:port instead will listen only on the specified IP, so that
+# you can use the same port for different servers on different IPs of one
+# server.
+#
 # Normal player connections (also used by metaserver), to default queue
 2592 ntserv "ntserv"
 #
@@ -34,3 +39,5 @@
 4577 ntserv "away" -q 3
 4000 ntserv "homeobs" -q 4
 5000 ntserv "awayobs" -q 5
+# Sample virtual-hosting configuration to only listen on 127.0.0.1
+#127.0.0.1:2592 ntserv "ntserv"