TCP message frame example
I need an example of TCP message frame example
how to split message
NetCoreServer provides a streaming interface for TCP/SSL clients & sessions. If you want to have a message based interface you have to send message size into the stream, then message body in your serialization and send phase. Deserialization will read message size and than wait and read for remaining message body.
it's slower websocket TCP Test.zip
@chronoxor
@chronoxor Could you get examples for using streaming interface for TCP/SSL clients & sessions?