diff --git a/projects/robodj/bin/musicd b/projects/robodj/bin/musicd index bf8f761b..a2650dbe 100755 --- a/projects/robodj/bin/musicd +++ b/projects/robodj/bin/musicd @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# $Id: musicd,v 1.2 2001/03/22 02:44:26 mdb Exp $ +# $Id: musicd,v 1.3 2001/03/22 02:59:13 mdb Exp $ # # MP3 audio server. Manages playlists of mp3 files that live on a local # filesystem. The playlsits can be manipulated by connecting to the server @@ -22,8 +22,7 @@ my $mp3; main: { # create the server part of things - my $sock = new IO::Socket::INET(LocalHost => "localhost", - LocalPort => 2500, + my $sock = new IO::Socket::INET(LocalPort => 2500, Proto => "tcp", Listen => SOMAXCONN, Reuse => 1);