| 1821 | } |
| 1822 | |
| 1823 | unsigned64 NetChannelBasic::getMessageTime(MsgSerial ser) |
| 1824 | { |
| 1825 | RefD<NetMessage> msg; |
| 1826 | if (!revisited.get(ser, msg)) |
| 1827 | { |
| 1828 | return 0; |
| 1829 | } |
| 1830 | return msg->getTime(); |
| 1831 | } |
| 1832 | |
| 1833 | void NetChannelBasic::setOutputData(NetMessage* msg) |
| 1834 | // should be called inside the enter() (because of ack[]) |
no test coverage detected