ignore CLIENT_GET_STATE_RESP in default handler

This commit is contained in:
Darren Ranalli 2005-12-03 00:55:16 +00:00
parent 12c5c4e0f3
commit 7ea605853c

View File

@ -544,6 +544,9 @@ class ClientRepository(ConnectionRepository):
self.handleDelete(di) self.handleDelete(di)
elif msgType == CLIENT_DONE_INTEREST_RESP: elif msgType == CLIENT_DONE_INTEREST_RESP:
self.handleInterestDoneMessage(di) self.handleInterestDoneMessage(di)
elif msgType == CLIENT_GET_STATE_RESP:
# TODO: is this message obsolete?
pass
#Roger wants to remove this elif msgType == CLIENT_QUERY_ONE_FIELD_RESP: #Roger wants to remove this elif msgType == CLIENT_QUERY_ONE_FIELD_RESP:
#Roger wants to remove this self.handleQueryOneFieldResp(di) #Roger wants to remove this self.handleQueryOneFieldResp(di)
elif msgType == CLIENT_OBJECT_LOCATION: elif msgType == CLIENT_OBJECT_LOCATION: