监听套接字和客户端套接字的阻塞模式的最佳实践?
监听套接字负责接受新到来的客户端套接字:
sock_client = accept(sock_listen, NULL, NULL)
在典型的C/S应用程序中,监听套接字和客户端套接字的阻塞模式的最佳选择是什么?
listening socket is responsible for accepting new coming client socket :
sock_client = accept(sock_listen, NULL, NULL)
In a typical C/S application,what's the best choice of blocking mode of listening socket and client socket?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您是线程化的并且可以将线程专用于套接字,则阻塞。如果不是,那么在服务器上是非阻塞的。对客户来说,这取决于你是否有更好的事情要做。如果不阻塞则阻塞,如果阻塞则非阻塞。
If you are threaded and can devote a thread to a socket, then blocking. If you are not, then on the server non-blocking. On the client it depends if you have something better to do. Blocking if not, non-block if you do.