Closed zicklag closed 3 years ago
upper's data package is not need in-order. Transport only receive whole-data-package and send it to remote. (How to send the data packet depends on the transport process, like TCP: [0,0,0,0,x...xxx]
first-4-bytes is package length, and others is package value.)
stream/big-file protocol will be independent, only as a transmission channel, TCP or other as a control channel.
Awesome, thanks!
I've got a couple of general questions about the chamomile protocol and transports:
What are the requirements for a chamomile transport implementation at the message level. Does it need to make sure that messages are delivered reliably and in-order like TCP or can messages be unordered and unreliably delivered like UDP?
Is the protocol suitable for streaming applications such as network gaming or video conferencing or is it not designed for high-bandwidth, low-latency communication and it would instead be used to find peers and establish a different protocol connection between peers for things like streaming video?