I am developing a chat protocol in C# and I want several types of messages sent on the same connections, for example, text and application(eg file transfer) messages. Because applications may easily fill the TCP buffer, text messages may have a big delay until they sent, so I want them to have a certain priority over other messages.
//pseudo code:
while(true)
{
if(text.available)
send(text);
else
send(application);
}
though however might not work because TCP could have a lot of messages pending in its buffer, so that even if I send text messages as soon as they form, they may still get a big delay. I don't mind a delay of half a second or so, but if I push an entire file into the connection, it might take a couple of minutes.
Any ideas? (besides opening another TCP channel or rewriting TCP over UDP)
Here is a TCP window diagram:

