双工 BSD 套接字
正如标题所述,BSD 套接字的双工是多少?全双工? - 这是在同一个插座上。
As the title states, what are the duplex of the BSD sockets, full? - and that is on the same single socket.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您阅读
socket(2)
手册页,您将看到SOCK_STREAM
类型套接字是全双工的。对于 Windows 也是如此,请参阅 http://msdn.microsoft .com/en-us/library/ms740506(v=vs.85).aspx 。If you read the
socket(2)
manual page, you will see thatSOCK_STREAM
type sockets are full-duplex. Same for Windows, see http://msdn.microsoft.com/en-us/library/ms740506(v=vs.85).aspx .