feature-requestgood first issuehelp wantedwindows
Repository metrics
- Stars
- (26,843 stars)
- PR merge metrics
- (Avg merge 54d) (12 merged PRs in 30d)
Description
AF_UNIX is supported on Windows now, and has some advantages over named pipes:
https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/
What are your thoughts on adding support for this to the uv_pipe_* family of functions?
- Since
UV_NAMED_PIPEalready means "named pipe" on Windows and "unix socket" on Unix, maybe a newUV_UNIX_SOCKETflag could be used to opt-intoAF_UNIXbehavior on Windows? - Alternative: on Windows versions where
AF_UNIXis supported,UV_NAMED_PIPEcould useAF_UNIXunconditionally. But this could break applications that assume pipe names have\\.\pipe\...format.