1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 11:22:53 +02:00
- Added a TODO
- Removed now-completed TODO
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-14 23:58:22 +02:00
parent 1f1796930d
commit 12883f93db

View File

@ -622,13 +622,6 @@ public class Client : Thread
/* Enqueue the message to the receive queue */
receiver.rq(message);
}
/**
* TODO: Make send queue which is used on another thread to send messages
*
* This allows us to intrpoduce fakelag and also prioritse pongs (we should
* send them via here)
*/
/**
* Sends a message to the server by enqueuing it on
@ -639,6 +632,9 @@ public class Client : Thread
*/
private void sendMessage(string messageOut)
{
// TODO: Do message splits here
/* Encode the mesage */
ubyte[] encodedMessage = encodeMessage(messageOut);