Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • In addition to named pipes, you could also consider unix domain sockets. Commented Apr 12, 2016 at 14:57
  • Named pipes are problematic when you have multiple simultaneous readers; you'll frequently get a reader that gets part of the data. Sockets are a problem when you have no control over the reader; you can't open a socket the same way you can a file or pipe. Commented Dec 5, 2017 at 17:26