gpt4 book ai didi

python - 扭曲的 : How to print message at the server?

转载 作者:太空宇宙 更新时间:2023-11-04 10:47:42 25 4
gpt4 key购买 nike

我是使用 Twisted 框架的初学者。

我正在使用 Python 中的 twisted 库开发一个简单的客户端服务器程序。

我在服务器端使用代码。

factory = protocol.ServerFactory()
factory.protocol = Echo
PortNo = 8000
reactor.listenTCP(PortNo,factory)

reactor.run()

每当客户端关闭连接时,我想在服务器端打印消息。

知道怎么做吗?

谢谢

最佳答案

扩展您要使用的协议(protocol)的 connectionLost 方法。

def connectionLost(self, reason): 
self.factory.numProtocols = self.factory.numProtocols-1
// do stuff

更多引用:

http://twistedmatrix.com/documents/12.2.0/core/howto/servers.html#auto2

关于python - 扭曲的 : How to print message at the server?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16213589/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com