Commit f7ec287f authored by Aurel's avatar Aurel

implement handler for answerTIDs


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@173 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent b6dbac23
...@@ -498,4 +498,8 @@ class ClientEventHandler(EventHandler): ...@@ -498,4 +498,8 @@ class ClientEventHandler(EventHandler):
self.handleUnexpectedPacket(conn, packet) self.handleUnexpectedPacket(conn, packet)
def handleAnswerTIDs(self, conn, packet, tid_list): def handleAnswerTIDs(self, conn, packet, tid_list):
raise NotImplementedError if isinstance(conn, MTClientConnection):
app = self.app
app.local_var.node_tids[conn.getUUID()] = tid_list
else:
self.handleUnexpectedPacket(conn, packet)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment