Async named pipes / unix streams on windows

I'm thinking about providing support for those in my lib, but I can't really find any crates that realize this.

Did I miss something? Might it be easy to wrap some sync thing for async reading/writing? Thanks for any pointers :slight_smile:

Tokio has a type called UnixStream.

This seems to be unix-only, although I have a hard time really seeing why... it's dependent on the feature uds, which as far as I can tell depends on mio-uds which looks like it works on unix only.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.