Okay, this message is generated in Networking/UDP.pm:

Code:
--------------------
    
  $udpsock = IO::Socket::INET->new(
  Proto     => 'udp',
  LocalPort => SERVERPORT,
  LocalAddr => $main::localClientNetAddr
  
  ) or do {
  
  errorMsg("There is already another copy of the SlimServer running on this 
machine. ($!)\n");
  # XXX - exiting in a deep sub is kinda bad. should propagate
  # up. Too bad perl doesn't have real exceptions.
  exit 1;
  
--------------------


In short, if it can't open the UDP port (3483) it gives this.

Your netstat doesn't show 3483 being used, so something else is
breaking that: it still sounds like you have a firewall turned on.


-- 
snarlydwarf
------------------------------------------------------------------------
snarlydwarf's Profile: http://forums.slimdevices.com/member.php?userid=1179
View this thread: http://forums.slimdevices.com/showthread.php?t=35875

_______________________________________________
discuss mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/discuss

Reply via email to