Changeset f9cb9fb in network-game for common/MessageProcessor.h
- Timestamp:
- Aug 3, 2013, 12:52:15 AM (12 years ago)
- Branches:
- master
- Children:
- 753fa8a
- Parents:
- 8271c78
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/MessageProcessor.h
r8271c78 rf9cb9fb 15 15 map<unsigned int, map<unsigned long, MessageContainer> > sentMessages; 16 16 17 // map from message ids to the time each mesage was acked18 map<unsigned int, MessageContainer> ackedMessages;17 // map from player address to map from message id to time accked 18 map<unsigned long, map<unsigned int, unsigned long long> > ackedMessages; 19 19 20 20 unsigned long pid; … … 30 30 31 31 map<unsigned int, map<unsigned long, MessageContainer> >& getSentMessages(); 32 map<unsigned int, MessageContainer>& getAckedMessages();32 map<unsigned long, map<unsigned int, unsigned long long> >& getAckedMessages(); 33 33 }; 34 34
Note:
See TracChangeset
for help on using the changeset viewer.