如何编写一个既是客户端又是扭曲的服务器?
如何创建一个同时也是客户端的扭曲服务器? 我希望反应堆能够监听,同时它也可以用于连接到同一个服务器实例,该实例也可以连接和监听。
How do I create a twisted server that's also a client?
I want the reactor to listen while at the same time it can also be use to connect to the same server instance which can also connect and listen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用reactor.listenTCP和reactor.connectTCP。您可以根据需要拥有任意多种不同类型的连接 - 服务器或客户端。
例如:
Call
reactor.listenTCP
andreactor.connectTCP
. You can have as many different kinds of connections - servers or clients - as you want.For example: