http://qs1969.pair.com?node_id=457372


in reply to Re^2: IO::Socket::UNIX recvmsg error
in thread IO::Socket::UNIX recvmsg error

In this case, FIFOs would actually be more appropriate than sockets. Sockets are analogous to TCP or UDP connections (which is no coincidence), whereas FIFOs are closer to "ordinary" file operations. But since you've already been down that road, you'll have to look elsewhere.

Have you considered processing lines from the file as they arrive, tail -f style?

Replies are listed 'Best First'.
Re^4: IO::Socket::UNIX recvmsg error
by fuzzyping (Chaplain) on May 16, 2005 at 10:19 UTC
    Tailing it won't work either. I'm using djm's Flowd, which expects you to init() the logfile. It does not accept stdin as a interface for conversion. I'm working with djm right now, it appears the fifo problem is a bug with flowd.

    Thanks,

    -fp