Thanks! I was hesitant to use recv, since I use it in socketpairs in my project.
On Fri, Jun 16, 2017 at 10:09 AM Todd C. Miller <[email protected]> wrote: > You cannot use recv on a pipe, it will fail with ENOTSOCK. > Use read/write or try socketpair() instead. > > - todd >
