On Sun, Mar 09, 2003 at 12:15:19PM +0700, Komtanoo Pinpimai wrote: > Hello, > > I've build a system based on unix name pipes; the problem arise when > I try to extend the system to multiple servers sharing files with NFS. > > As of my understanding, NFS doesn't support name pipe. Is there any > ready-made network object, or service that can perform the name pipe > task across network ?
The first solution that came to mind was DJ Bernstein's ucspi interface, of which there are implementations for tcp, udp, unix domain sockets, and ipc, but apparently, not for FIFO's. In any case, writing an implementation for FIFOs should not be too hard. I can certainly imagine a way to transform a FIFO based service to a remote machine. Of course, I'd try to get rid of the FIFO's and bury the network access in the interface so it could work locally... HTH -Gyepi _______________________________________________ Boston-pm mailing list [EMAIL PROTECTED] http://mail.pm.org/mailman/listinfo/boston-pm

