in reply to Tailing a file to a TCP socket
You've assigned $SIG{CHLD}, which implies that you're doing some kind of fork(), but this is not done. Maybe this was stripped from the example. If you're not forking, you won't need it.use IO::Socket::INET; my $socket = new IO::Socket::INET ( LocalPort => 8069, Proto => 'tcp', Listen => SO_MAXCONN); while ($client_socket = $socket->accept()) { print "Connection received from ",$client_socket->peerhost()," +\n"; # Do stuff with the $client_socket... }
There is a lot of other things you will want to handle if you are using more than one connection, but this is the basics.$good = 1; while ($good) { while (<$LOGFILE>) { $client_socket->print($_) || $good = 0; } seek ($LOGFILE, 0, 1); sleep 1; }
|
|---|