Skip to content

[TCP] Can not get message from other client. #24

Discussion options

You must be logged in to vote

Well. if you want use Netly with other library you must do:

Option 1

var server = new TcpServer(framing: false);
  • Disable Messsage Framing: Because Nelty uses custom message framing for performance and data security purposes so that a message is received in the same way it is sent. Message Framing is something that each library adds differently and netly also uses a different protocol than the other TCP libraries.

By disabling Message Framing you will use standard TCP (without framing), read more about that.

Option 2

You can also integrate the netly protocol into your client. read more about that

Notice:

Remember that if your server has message framing enabled, the client must also h…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@VincentZe
Comment options

@vanhaodev
Comment options

Answer selected by alec1o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants