Note actual transport on the client, too.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5800 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2009-05-26 19:57:00 +00:00
parent e13aca6570
commit 510e6982bf
@@ -163,8 +163,10 @@ public class BlockingCommunicator extends Communicator
{
// post as datagram if hinted and possible
if (!msg.getTransport().isReliable() && _datagramWriter != null) {
msg.noteActualTransport(Transport.UNRELIABLE_UNORDERED);
_dataq.append(msg);
} else {
msg.noteActualTransport(Transport.RELIABLE_ORDERED);
_msgq.append(msg);
}
}