Diff for /telnetbbs/telnetbbs.pl between versions 1.7 and 1.10

version 1.7, 2010/12/16 14:24:25 version 1.10, 2010/12/17 20:15:24
Line 44  my $port      = $opts{'port'}      || $c Line 44  my $port      = $opts{'port'}      || $c
 my $DISPLAY   = $cfg{'display'}    || ":0.0";  my $DISPLAY   = $cfg{'display'}    || ":0.0";
 my $BBS_NAME  = $cfg{'bbs_name'}   || "Hell's Dominion BBS";  my $BBS_NAME  = $cfg{'bbs_name'}   || "Hell's Dominion BBS";
 my $DBCONF    = $cfg{'dosbox_cfg'} || "/tmp/dosbox-__NODE__.conf";  my $DBCONF    = $cfg{'dosbox_cfg'} || "/tmp/dosbox-__NODE__.conf";
 my $BBS_CMD   = $cfg{'bbs_cmd'}    || "DISPLAY=$DISPLAY /usr/bin/dosbox -conf ";  my $BBS_CMD   = $cfg{'bbs_cmd'}    || "DISPLAY=__DISPLAY__ /usr/bin/dosbox -conf ";
 my $LOGGING   = $cfg{'logging'}    || 0;  my $LOGGING   = $cfg{'logging'}    || 0;
 my $LOG       = $cfg{'log_path'}   || "/tmp/bbs.log";  my $LOG       = $cfg{'log_path'}   || "/tmp/bbs.log";
 my $MAX_NODE  = $cfg{'nodes'}      || 1;  my $MAX_NODE  = $cfg{'nodes'}      || 1;
 my $DOSBOXT   = $cfg{'dosboxt'}    || "dosbox.conf.template";  my $DOSBOXT   = $cfg{'dosboxt'}    || "dosbox.conf.template";
 my $BASE_PORT = $cfg{'base_port'}  || 7000;  my $BASE_PORT = $cfg{'base_port'}  || 7000;
 my $LOCK_PATH = $cfg{'lock_path'}  || "/tmp";  my $LOCK_PATH = $cfg{'lock_path'}  || "/tmp";
      $BBS_CMD   =~ s/__DISPLAY__/$DISPLAY/g;
   
 ##  ##
 ## Check that we are 'root'   ## Check that we are 'root' 
Line 105  while( 1 ) { sleep 1; } Line 106  while( 1 ) { sleep 1; }
 ## Sub-routines begin here  ## Sub-routines begin here
 ##  ##
 ###############################################################################  ###############################################################################
 ###############################################################################  
   
   
   ###############################################################################
   ##
   ## &logmsg( "string" );
   ##
   ##  This takes a string and prepends the process name, ID and timestamp
   ##  to the message.  It then displays it to STDOUT and logs it if enabled.
   ##
   ###############################################################################
 sub logmsg   sub logmsg 
 {   { 
         my $message = "$0 $$ " . scalar( localtime( ) ) . ":@_\n";          my $message = "$0 $$ " . scalar( localtime( ) ) . ":@_\n";
Line 116  sub logmsg Line 125  sub logmsg
   
   
 ###############################################################################  ###############################################################################
   ##
   ## &display_config_and_options( %hash );
   ##
   ##  This will display via Data::Dumper a hash that is passed to it.
   ##  If verbose is enabled it will got to STDOUT and if logging is enabled
   ##  it will be logged.
   ##
   ##  This is called only once during startup.
   ##
 ###############################################################################  ###############################################################################
 sub display_config_and_options  sub display_config_and_options
 {  {
Line 163  sub startNetServer Line 181  sub startNetServer
                 ##                  ##
                 my $node = 0;                  my $node = 0;
                 my $lock_file = "";                  my $lock_file = "";
                 foreach (1 .. $MAX_NODE)                  my $cnt  = 0;
                   while ( ! $node && $cnt < $MAX_NODE )
                 {                  {
                         next if ( -f $LOCK_PATH."/".$BBS_NAME."_node".$_.".lock" );                          $cnt++;
                           $lock_file = $LOCK_PATH . "/" . $BBS_NAME . 
                                        "_node" . $cnt . ".lock";
   print "Checking for node lock: $lock_file\n";
                           next if ( -f $lock_file );
   
                         ##                          ##
                         ## Create node lock file                          ## Create node lock file
                         ##                          ##
                         $lock_file = $LOCK_PATH."/".$BBS_NAME."_node".$_.".lock";  
                         open LOCK, ">$lock_file";                          open LOCK, ">$lock_file";
                         close( LOCK );                          close( LOCK );
                         $node = $BBS_NODE = $_;                          $BBS_NODE = $node = $cnt;
   print "Using node: $node\n";
                 }                  }
   
                 ##                  ##
Line 215  sub startNetServer Line 238  sub startNetServer
                 print "Welcome to $BBS_NAME!" . $EOL;                  print "Welcome to $BBS_NAME!" . $EOL;
   
                 ##                  ##
                 if ( ! $lock_file )                   if ( ! $node ) 
                 {                  {
                         print "No available nodes.  Try again later.".$EOL;                          print "No available nodes.  Try again later.".$EOL;
                         exit;                          exit;
Line 233  sub startNetServer Line 256  sub startNetServer
                         my $cmd = $BBS_CMD . $DBCONF;                          my $cmd = $BBS_CMD . $DBCONF;
                         system( $cmd );                          system( $cmd );
                         print "Shutting down node $BBS_NODE\n";                          print "Shutting down node $BBS_NODE\n";
   
                         ##                          ##
                         ## Remove Lock                          ## Remove Lock
                         ##                                ##      
                         unlink( $lock_file );                          unlink( $lock_file );
                         unlink( $DBCONF );                          unlink( $DBCONF );
                           close( $hostConnection );
                           close( $server );
                           kill( "TERM" => $bbsPID );
                         exit;                          exit;
                 }                  }
   
Line 282  sub startNetServer Line 309  sub startNetServer
                 unlink( $DBCONF );                  unlink( $DBCONF );
         }          }
         close( $hostConnection );          close( $hostConnection );
         exit;          close( $server );
   
 #       close( $server );          exit;
 }  }
   
 ###############################################################################  ###############################################################################
Line 434  sub processExists Line 461  sub processExists
 }  }
   
 ###############################################################################  ###############################################################################
   ##
   ## %config_hash = &fetchConfig( );
   ##
   ##  This reads in a file in the format of "key = value" and stores them
   ## in to a hash of $hash{$key} = $value.  Lines starting with '#' are 
   ## considered comments and ignored.
   ##
 ###############################################################################  ###############################################################################
 sub fetchConfig   sub fetchConfig 
 {  {
Line 461  sub fetchConfig Line 495  sub fetchConfig
 }  }
   
 ###############################################################################  ###############################################################################
   ##
   ## my $file = &fetchConfig( );
   ##
   ##  This function will look for 'telnetbbs.conf' or whatever was specified
   ##  on the command line.  It will search the @paths below for the default
   ##  filename if none is specifed.
   ##
 ###############################################################################  ###############################################################################
 sub findConfig  sub findConfig
 {  {

Removed from v.1.7  
changed lines
  Added in v.1.10


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>