我正在尝试使用数据报和命名管道来实现一个简单的客户端。
我将协议定义如下:
class ConsoleProtocol(protocol.DatagramProtocol):
def __init__(self, machine, console_path):
self.console_path = console_path
self.transport = None
def datagramReceived(self, datagram, addr):
self.logger.debug("datagramReceived()")
# blah, doing stuff !
def sendHalt(self):
self.logger.debug("sending message to fifo %s", self.console_path)
self.transport.write("ahaha", self.console_path)
并将其连接到UNIX客户端端点:
console_endpoint = endpoints.UNIXClientEndpoint(reactor, console_path)
console_protocol = ConsoleProtocol()
endpoints.connectProtocol(self.console_endpoint, self.console_protocol)
但在执行方法sendHalt()
期间,传输参数为NoneType
。使用带有Twisted的UNIX客户端的正确方法是什么?
答案 0 :(得分:1)
端点不适用于数据报协议。您需要使用reactor.listenUNIXDatagram(console_path, console_protocol)
。一定不要混淆UNIX套接字和命名管道:它们是不同的,不兼容的东西。 Twisted不包括对通过命名管道进行通信的支持。