Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AFAIK,如果将 unix 套接字创建为类型SOCK_STREAMS,那么它是单向的,如果SOCK_DGRAM是双向的。
SOCK_STREAMS
SOCK_DGRAM
我正在考虑node-ipc通过 unix 套接字使用 IPC。它有一个客户端和服务器的示例,据称它们通过单向 unix 套接字进行通信SOCK_STREAMS- 但似乎双向发送消息。
node-ipc
我错过了什么?是否在两个方向上使用了相同的套接字路径?真的在用SOCK_STREAMS吗?
AFAIK,如果将 unix 套接字创建为 SOCK_STREAMS 类型,则它是单向的,如果 SOCK_DGRAM 则它是双向的。
不是。域 SOCK_STREAMS 是双向的,就像互联网 SOCK_STREAMS 的情况一样。