cotn/notes/
cotn/src/
#! /bin/csh -f
# Written by Furey.
# With additions from Tony.

# Set the port number.
set port = 4600
if ( "$1" != "" ) set port="$1"

# Change to area directory.
# autokill 60 >> ../area/autokill.txt &
cd ../area

# Set limits.
#nohup
nice
#limit stack 1024k
limit coredumpsize 8128k
limit filesize 16256k
if ( -e ../txt/shutdown.txt ) rm -f ../txt/shutdown.txt

while ( 1 )
    # If you want to have logs in a different directory,
    #   change the 'set logfile' line to reflect the directory name.
     set index = 1000
     while ( 1 )
 	set logfile = ../log/$index.log
 	if ( ! -e $logfile ) break
 	@ index++
     end

    # Run merc.
    cd ../area
  ../src/mcloud $port >&! $logfile

    # Restart, giving old connections a chance to die.
    if ( -e ../txt/shutdown.txt ) then
	rm -f ../txt/shutdown.txt
	exit 0
    endif
    sleep 2
end